Deprecated the BLOGGER addon

This commit is contained in:
Tobias Diekershoff 2021-11-27 17:07:00 +01:00
commit e0cd6b99a1
40 changed files with 1546 additions and 0 deletions

View file

@ -0,0 +1,56 @@
# ADDON blogger
# Copyright (C)
# This file is distributed under the same license as the Friendica blogger addon package.
#
#
# Translators:
# Sveinn í Felli <sv1@fellsnet.is>, 2016,2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2018-05-24 09:45+0000\n"
"Last-Translator: Sveinn í Felli <sv1@fellsnet.is>\n"
"Language-Team: Icelandic (http://www.transifex.com/Friendica/friendica/language/is/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: is\n"
"Plural-Forms: nplurals=2; plural=(n % 10 != 1 || n % 100 == 11);\n"
#: blogger.php:42
msgid "Post to blogger"
msgstr "Senda færslu á bloggara"
#: blogger.php:74 blogger.php:78
msgid "Blogger Export"
msgstr "Flytja út blogg"
#: blogger.php:82
msgid "Enable Blogger Post Addon"
msgstr "Virkja sendiviðbót fyrir blogg"
#: blogger.php:87
msgid "Blogger username"
msgstr "Notandanafn bloggara"
#: blogger.php:92
msgid "Blogger password"
msgstr "Aðgangsorð bloggara"
#: blogger.php:97
msgid "Blogger API URL"
msgstr "API slóð bloggs"
#: blogger.php:102
msgid "Post to Blogger by default"
msgstr "Sjálfgefið láta færslur flæða inn á blogg"
#: blogger.php:108
msgid "Save Settings"
msgstr "Vista stillingar"
#: blogger.php:178
msgid "Post from Friendica"
msgstr "Færslur frá Friendica"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_is")) {
function string_plural_select_is($n){
$n = intval($n);
return intval($n % 10 != 1 || $n % 100 == 11);
}}
$a->strings['Post to blogger'] = 'Senda færslu á bloggara';
$a->strings['Blogger Export'] = 'Flytja út blogg';
$a->strings['Enable Blogger Post Addon'] = 'Virkja sendiviðbót fyrir blogg';
$a->strings['Blogger username'] = 'Notandanafn bloggara';
$a->strings['Blogger password'] = 'Aðgangsorð bloggara';
$a->strings['Blogger API URL'] = 'API slóð bloggs';
$a->strings['Post to Blogger by default'] = 'Sjálfgefið láta færslur flæða inn á blogg';
$a->strings['Save Settings'] = 'Vista stillingar';
$a->strings['Post from Friendica'] = 'Færslur frá Friendica';