forked from friendica/friendica-addons
Merge pull request #878 from tobiasd/20190821-lng
DE and SV translation updates
This commit is contained in:
commit
f62b08f550
|
@ -5,6 +5,7 @@
|
|||
#
|
||||
# Translators:
|
||||
# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2019
|
||||
# Vinzenz Vietzke <vinz@vinzv.de>, 2019
|
||||
#
|
||||
#, fuzzy
|
||||
msgid ""
|
||||
|
@ -13,7 +14,7 @@ msgstr ""
|
|||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2019-08-07 09:03+0200\n"
|
||||
"PO-Revision-Date: 2019-08-07 07:43+0000\n"
|
||||
"Last-Translator: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2019\n"
|
||||
"Last-Translator: Vinzenz Vietzke <vinz@vinzv.de>, 2019\n"
|
||||
"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
|
@ -35,7 +36,7 @@ msgstr "GabSocial Instanzen blockieren"
|
|||
|
||||
#: blockbot.php:38
|
||||
msgid "Training mode"
|
||||
msgstr "Trainings Modus"
|
||||
msgstr "Trainingsmodus"
|
||||
|
||||
#: blockbot.php:46
|
||||
msgid "Settings updated."
|
||||
|
|
|
@ -9,5 +9,5 @@ function string_plural_select_de($n){
|
|||
$a->strings["Save Settings"] = "Einstellungen speichern";
|
||||
$a->strings["Allow \"good\" crawlers"] = "\"Gute\" Crawler erlauben";
|
||||
$a->strings["Block GabSocial"] = "GabSocial Instanzen blockieren";
|
||||
$a->strings["Training mode"] = "Trainings Modus";
|
||||
$a->strings["Training mode"] = "Trainingsmodus";
|
||||
$a->strings["Settings updated."] = "Einstellungen aktualisiert.";
|
||||
|
|
59
blockem/lang/sv/messages.po
Normal file
59
blockem/lang/sv/messages.po
Normal file
|
@ -0,0 +1,59 @@
|
|||
# ADDON blockem
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blockem addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Bjoessi <torbjorn.andersson@syte.se>, 2019
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2018-08-17 10:23+0200\n"
|
||||
"PO-Revision-Date: 2019-08-20 07:51+0000\n"
|
||||
"Last-Translator: Bjoessi <torbjorn.andersson@syte.se>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: blockem.php:54 blockem.php:58
|
||||
msgid "Blockem"
|
||||
msgstr "BLOCKEM"
|
||||
|
||||
#: blockem.php:62
|
||||
msgid ""
|
||||
"Hides user's content by collapsing posts. Also replaces their avatar with "
|
||||
"generic image."
|
||||
msgstr "Döljer användares inlägg genom sammanslagning nedåt. Användarens profilbild ersätts med en standardbild."
|
||||
|
||||
#: blockem.php:63
|
||||
msgid "Comma separated profile URLS:"
|
||||
msgstr "Kommaseparerade profiladresser:"
|
||||
|
||||
#: blockem.php:67
|
||||
msgid "Save Settings"
|
||||
msgstr "Spara inställningar"
|
||||
|
||||
#: blockem.php:81
|
||||
msgid "BLOCKEM Settings saved."
|
||||
msgstr "BLOCKEM Inställningar sparade."
|
||||
|
||||
#: blockem.php:143
|
||||
#, php-format
|
||||
msgid "Filtered user: %s"
|
||||
msgstr "Filtrerat på användare:%s"
|
||||
|
||||
#: blockem.php:202
|
||||
msgid "Unblock Author"
|
||||
msgstr "Avblockera författare"
|
||||
|
||||
#: blockem.php:204
|
||||
msgid "Block Author"
|
||||
msgstr "Blockera författare"
|
||||
|
||||
#: blockem.php:244
|
||||
msgid "blockem settings updated"
|
||||
msgstr "BLOCKEM Inställningar uppdaterade"
|
|
@ -1,3 +1,17 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Spara";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Blockem"] = "BLOCKEM";
|
||||
$a->strings["Hides user's content by collapsing posts. Also replaces their avatar with generic image."] = "Döljer användares inlägg genom sammanslagning nedåt. Användarens profilbild ersätts med en standardbild.";
|
||||
$a->strings["Comma separated profile URLS:"] = "Kommaseparerade profiladresser:";
|
||||
$a->strings["Save Settings"] = "Spara inställningar";
|
||||
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM Inställningar sparade.";
|
||||
$a->strings["Filtered user: %s"] = "Filtrerat på användare:%s";
|
||||
$a->strings["Unblock Author"] = "Avblockera författare";
|
||||
$a->strings["Block Author"] = "Blockera författare";
|
||||
$a->strings["blockem settings updated"] = "BLOCKEM Inställningar uppdaterade";
|
||||
|
|
56
blogger/lang/sv/messages.po
Normal file
56
blogger/lang/sv/messages.po
Normal file
|
@ -0,0 +1,56 @@
|
|||
# ADDON blogger
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blogger addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Bjoessi <torbjorn.andersson@syte.se>, 2019
|
||||
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: 2019-08-20 07:54+0000\n"
|
||||
"Last-Translator: Bjoessi <torbjorn.andersson@syte.se>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: blogger.php:42
|
||||
msgid "Post to blogger"
|
||||
msgstr "Lägg in på Blogger"
|
||||
|
||||
#: blogger.php:74 blogger.php:78
|
||||
msgid "Blogger Export"
|
||||
msgstr "Export till Blogger"
|
||||
|
||||
#: blogger.php:82
|
||||
msgid "Enable Blogger Post Addon"
|
||||
msgstr "Aktivera tillägg för Blogger-inlägg"
|
||||
|
||||
#: blogger.php:87
|
||||
msgid "Blogger username"
|
||||
msgstr "Blogger användarnamn"
|
||||
|
||||
#: blogger.php:92
|
||||
msgid "Blogger password"
|
||||
msgstr "Blogger lösenord"
|
||||
|
||||
#: blogger.php:97
|
||||
msgid "Blogger API URL"
|
||||
msgstr "Blogger API URL"
|
||||
|
||||
#: blogger.php:102
|
||||
msgid "Post to Blogger by default"
|
||||
msgstr "Lägg in på Blogger som standard"
|
||||
|
||||
#: blogger.php:108
|
||||
msgid "Save Settings"
|
||||
msgstr "Spara inställningar"
|
||||
|
||||
#: blogger.php:178
|
||||
msgid "Post from Friendica"
|
||||
msgstr "Inlägg från Friendica"
|
|
@ -1,3 +1,17 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Submit"] = "Spara";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Post to blogger"] = "Lägg in på Blogger";
|
||||
$a->strings["Blogger Export"] = "Export till Blogger";
|
||||
$a->strings["Enable Blogger Post Addon"] = "Aktivera tillägg för Blogger-inlägg";
|
||||
$a->strings["Blogger username"] = "Blogger användarnamn";
|
||||
$a->strings["Blogger password"] = "Blogger lösenord";
|
||||
$a->strings["Blogger API URL"] = "Blogger API URL";
|
||||
$a->strings["Post to Blogger by default"] = "Lägg in på Blogger som standard";
|
||||
$a->strings["Save Settings"] = "Spara inställningar";
|
||||
$a->strings["Post from Friendica"] = "Inlägg från Friendica";
|
||||
|
|
|
@ -4,15 +4,18 @@
|
|||
#
|
||||
#
|
||||
# Translators:
|
||||
# bavatar <tobias.diekershoff@gmx.net>, 2014
|
||||
# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2014
|
||||
# Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2018
|
||||
# Ulf Rompe <transifex.com@rompe.org>, 2019
|
||||
# Vinzenz Vietzke <vinz@vinzv.de>, 2019
|
||||
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: 2014-07-03 05:49+0000\n"
|
||||
"Last-Translator: bavatar <tobias.diekershoff@gmx.net>\n"
|
||||
"Language-Team: German (http://www.transifex.com/projects/p/friendica/language/de/)\n"
|
||||
"PO-Revision-Date: 2019-08-19 10:15+0000\n"
|
||||
"Last-Translator: Vinzenz Vietzke <vinz@vinzv.de>\n"
|
||||
"Language-Team: German (http://www.transifex.com/Friendica/friendica/language/de/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
|
@ -37,19 +40,19 @@ msgstr "Client Secret"
|
|||
|
||||
#: buffer.php:67
|
||||
msgid "Error when registering buffer connection:"
|
||||
msgstr "Fehler beim Registrieren des buffer Connectors."
|
||||
msgstr "Fehler beim Registrieren des Buffer-Connectors."
|
||||
|
||||
#: buffer.php:86
|
||||
msgid "You are now authenticated to buffer. "
|
||||
msgstr "Du bist nun auf buffer authentifiziert."
|
||||
msgstr "Du bist nun auf Buffer authentifiziert."
|
||||
|
||||
#: buffer.php:87
|
||||
msgid "return to the connector page"
|
||||
msgstr "zurück zur Connector Seite"
|
||||
msgstr "zurück zur Connector-Seite"
|
||||
|
||||
#: buffer.php:103
|
||||
msgid "Post to Buffer"
|
||||
msgstr "Auf buffer veröffentlichen"
|
||||
msgstr "Auf Buffer veröffentlichen"
|
||||
|
||||
#: buffer.php:128 buffer.php:132
|
||||
msgid "Buffer Export"
|
||||
|
@ -57,20 +60,20 @@ msgstr "Buffer Export"
|
|||
|
||||
#: buffer.php:142
|
||||
msgid "Authenticate your Buffer connection"
|
||||
msgstr "Authentifiziere deine Verbindung zu buffer"
|
||||
msgstr "Authentifiziere deine Verbindung zu Buffer"
|
||||
|
||||
#: buffer.php:146
|
||||
msgid "Enable Buffer Post Addon"
|
||||
msgstr "Buffer Post-Addon aktivieren"
|
||||
msgstr "Buffer-Post-Addon aktivieren"
|
||||
|
||||
#: buffer.php:151
|
||||
msgid "Post to Buffer by default"
|
||||
msgstr "Standardmäßig auf buffer veröffentlichen"
|
||||
msgstr "Standardmäßig auf Buffer veröffentlichen"
|
||||
|
||||
#: buffer.php:156
|
||||
msgid "Check to delete this preset"
|
||||
msgstr "Markieren um dieses Preset zu löschen"
|
||||
msgstr "Markieren, um diese Voreinstellung zu löschen"
|
||||
|
||||
#: buffer.php:165
|
||||
msgid "Posts are going to all accounts that are enabled by default:"
|
||||
msgstr "Beiträge werden an alle Accounts geschickt, die Standardmäßig aktiviert sind."
|
||||
msgstr "Beiträge werden an alle Accounts geschickt, die standardmäßig aktiviert sind."
|
||||
|
|
|
@ -2,6 +2,7 @@
|
|||
|
||||
if(! function_exists("string_plural_select_de")) {
|
||||
function string_plural_select_de($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
|
@ -9,13 +10,13 @@ $a->strings["Permission denied."] = "Zugriff verweigert.";
|
|||
$a->strings["Save Settings"] = "Einstellungen speichern";
|
||||
$a->strings["Client ID"] = "Client ID";
|
||||
$a->strings["Client Secret"] = "Client Secret";
|
||||
$a->strings["Error when registering buffer connection:"] = "Fehler beim Registrieren des buffer Connectors.";
|
||||
$a->strings["You are now authenticated to buffer. "] = "Du bist nun auf buffer authentifiziert.";
|
||||
$a->strings["return to the connector page"] = "zurück zur Connector Seite";
|
||||
$a->strings["Post to Buffer"] = "Auf buffer veröffentlichen";
|
||||
$a->strings["Error when registering buffer connection:"] = "Fehler beim Registrieren des Buffer-Connectors.";
|
||||
$a->strings["You are now authenticated to buffer. "] = "Du bist nun auf Buffer authentifiziert.";
|
||||
$a->strings["return to the connector page"] = "zurück zur Connector-Seite";
|
||||
$a->strings["Post to Buffer"] = "Auf Buffer veröffentlichen";
|
||||
$a->strings["Buffer Export"] = "Buffer Export";
|
||||
$a->strings["Authenticate your Buffer connection"] = "Authentifiziere deine Verbindung zu buffer";
|
||||
$a->strings["Enable Buffer Post Addon"] = "Buffer Post-Addon aktivieren";
|
||||
$a->strings["Post to Buffer by default"] = "Standardmäßig auf buffer veröffentlichen";
|
||||
$a->strings["Check to delete this preset"] = "Markieren um dieses Preset zu löschen";
|
||||
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Beiträge werden an alle Accounts geschickt, die Standardmäßig aktiviert sind.";
|
||||
$a->strings["Authenticate your Buffer connection"] = "Authentifiziere deine Verbindung zu Buffer";
|
||||
$a->strings["Enable Buffer Post Addon"] = "Buffer-Post-Addon aktivieren";
|
||||
$a->strings["Post to Buffer by default"] = "Standardmäßig auf Buffer veröffentlichen";
|
||||
$a->strings["Check to delete this preset"] = "Markieren, um diese Voreinstellung zu löschen";
|
||||
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Beiträge werden an alle Accounts geschickt, die standardmäßig aktiviert sind.";
|
||||
|
|
77
buffer/lang/sv/messages.po
Normal file
77
buffer/lang/sv/messages.po
Normal file
|
@ -0,0 +1,77 @@
|
|||
# ADDON buffer
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica buffer addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Hypolite Petovan <hypolite@mrpetovan.com>, 2019
|
||||
# Bjoessi <torbjorn.andersson@syte.se>, 2019
|
||||
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: 2019-08-20 08:07+0000\n"
|
||||
"Last-Translator: Bjoessi <torbjorn.andersson@syte.se>\n"
|
||||
"Language-Team: Swedish (http://www.transifex.com/Friendica/friendica/language/sv/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: sv\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||
|
||||
#: buffer.php:31
|
||||
msgid "Permission denied."
|
||||
msgstr "Åtkomst nekad."
|
||||
|
||||
#: buffer.php:57 buffer.php:185
|
||||
msgid "Save Settings"
|
||||
msgstr "Spara inställningar"
|
||||
|
||||
#: buffer.php:59
|
||||
msgid "Client ID"
|
||||
msgstr "Klient-ID"
|
||||
|
||||
#: buffer.php:60
|
||||
msgid "Client Secret"
|
||||
msgstr "Klient hemlig nyckel"
|
||||
|
||||
#: buffer.php:67
|
||||
msgid "Error when registering buffer connection:"
|
||||
msgstr "Fel vid anslutning till Buffer"
|
||||
|
||||
#: buffer.php:86
|
||||
msgid "You are now authenticated to buffer. "
|
||||
msgstr "Du är nu autentiserad mot Buffer."
|
||||
|
||||
#: buffer.php:87
|
||||
msgid "return to the connector page"
|
||||
msgstr "återgå till anslutningssida"
|
||||
|
||||
#: buffer.php:103
|
||||
msgid "Post to Buffer"
|
||||
msgstr "Inlägg till Buffer"
|
||||
|
||||
#: buffer.php:128 buffer.php:132
|
||||
msgid "Buffer Export"
|
||||
msgstr "Export till Buffer"
|
||||
|
||||
#: buffer.php:142
|
||||
msgid "Authenticate your Buffer connection"
|
||||
msgstr "Validera din anslutning mot Buffer"
|
||||
|
||||
#: buffer.php:146
|
||||
msgid "Enable Buffer Post Addon"
|
||||
msgstr "Aktivera tillägg för Buffer-inlägg"
|
||||
|
||||
#: buffer.php:151
|
||||
msgid "Post to Buffer by default"
|
||||
msgstr "Lägg in på Buffer som standard"
|
||||
|
||||
#: buffer.php:156
|
||||
msgid "Check to delete this preset"
|
||||
msgstr "Markera för att ta bort förinställning"
|
||||
|
||||
#: buffer.php:165
|
||||
msgid "Posts are going to all accounts that are enabled by default:"
|
||||
msgstr "Inlägg skickas som standard till alla konton som är aktiverade:"
|
22
buffer/lang/sv/strings.php
Normal file
22
buffer/lang/sv/strings.php
Normal file
|
@ -0,0 +1,22 @@
|
|||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_sv")) {
|
||||
function string_plural_select_sv($n){
|
||||
$n = intval($n);
|
||||
return ($n != 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Permission denied."] = "Åtkomst nekad.";
|
||||
$a->strings["Save Settings"] = "Spara inställningar";
|
||||
$a->strings["Client ID"] = "Klient-ID";
|
||||
$a->strings["Client Secret"] = "Klient hemlig nyckel";
|
||||
$a->strings["Error when registering buffer connection:"] = "Fel vid anslutning till Buffer";
|
||||
$a->strings["You are now authenticated to buffer. "] = "Du är nu autentiserad mot Buffer.";
|
||||
$a->strings["return to the connector page"] = "återgå till anslutningssida";
|
||||
$a->strings["Post to Buffer"] = "Inlägg till Buffer";
|
||||
$a->strings["Buffer Export"] = "Export till Buffer";
|
||||
$a->strings["Authenticate your Buffer connection"] = "Validera din anslutning mot Buffer";
|
||||
$a->strings["Enable Buffer Post Addon"] = "Aktivera tillägg för Buffer-inlägg";
|
||||
$a->strings["Post to Buffer by default"] = "Lägg in på Buffer som standard";
|
||||
$a->strings["Check to delete this preset"] = "Markera för att ta bort förinställning";
|
||||
$a->strings["Posts are going to all accounts that are enabled by default:"] = "Inlägg skickas som standard till alla konton som är aktiverade:";
|
Loading…
Reference in a new issue