PL translation ljpost THX waldis

This commit is contained in:
Tobias Diekershoff 2018-08-06 14:07:13 +02:00
parent 5e9245ed30
commit 871fe55ebb
2 changed files with 29 additions and 28 deletions

View File

@ -1,6 +1,6 @@
# ADDON ljpost
# ADDON ijpost
# Copyright (C)
# This file is distributed under the same license as the Friendica ljpost addon package.
# This file is distributed under the same license as the Friendica ijpost addon package.
#
#
# Translators:
@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
"PO-Revision-Date: 2018-04-01 14:39+0000\n"
"PO-Revision-Date: 2018-08-04 10:48+0000\n"
"Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
"MIME-Version: 1.0\n"
@ -19,30 +19,30 @@ msgstr ""
"Language: pl\n"
"Plural-Forms: nplurals=4; plural=(n==1 ? 0 : (n%10>=2 && n%10<=4) && (n%100<12 || n%100>14) ? 1 : n!=1 && (n%10>=0 && n%10<=1) || (n%10>=5 && n%10<=9) || (n%100>=12 && n%100<=14) ? 2 : 3);\n"
#: ljpost.php:39
msgid "Post to LiveJournal"
msgstr "Opublikuj w LiveJournal"
#: ijpost.php:39
msgid "Post to Insanejournal"
msgstr "Opublikuj w Insanejournal"
#: ljpost.php:70
msgid "LiveJournal Post Settings"
msgstr "Ustawienia Postów LiveJournal"
#: ijpost.php:70
msgid "InsaneJournal Post Settings"
msgstr "Ustawienia InsaneJournal Post"
#: ljpost.php:72
msgid "Enable LiveJournal Post Addon"
msgstr "Włącz dodatek LiveJournal"
#: ijpost.php:72
msgid "Enable InsaneJournal Post Addon"
msgstr "Włącz dodatek InsaneJournal"
#: ljpost.php:77
msgid "LiveJournal username"
msgstr "Nazwa użytkownika LiveJournal"
#: ijpost.php:77
msgid "InsaneJournal username"
msgstr "nazwa użytkownika InsaneJournal"
#: ljpost.php:82
msgid "LiveJournal password"
msgstr "Hasło LiveJournal"
#: ijpost.php:82
msgid "InsaneJournal password"
msgstr "Hasło InsaneJournal"
#: ljpost.php:87
msgid "Post to LiveJournal by default"
msgstr "Opublikuj domyślnie w LiveJournal"
#: ijpost.php:87
msgid "Post to InsaneJournal by default"
msgstr "Wyślij domyślnie do InsaneJournal"
#: ljpost.php:93
#: ijpost.php:93
msgid "Submit"
msgstr "Wyślij"

View File

@ -2,13 +2,14 @@
if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){
$n = intval($n);
return ($n==1 ? 0 : ($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14) ? 1 : $n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14) ? 2 : 3);;
}}
;
$a->strings["Post to LiveJournal"] = "Opublikuj w LiveJournal";
$a->strings["LiveJournal Post Settings"] = "Ustawienia Postów LiveJournal";
$a->strings["Enable LiveJournal Post Addon"] = "Włącz dodatek LiveJournal";
$a->strings["LiveJournal username"] = "Nazwa użytkownika LiveJournal";
$a->strings["LiveJournal password"] = "Hasło LiveJournal";
$a->strings["Post to LiveJournal by default"] = "Opublikuj domyślnie w LiveJournal";
$a->strings["Post to Insanejournal"] = "Opublikuj w Insanejournal";
$a->strings["InsaneJournal Post Settings"] = "Ustawienia InsaneJournal Post";
$a->strings["Enable InsaneJournal Post Addon"] = "Włącz dodatek InsaneJournal";
$a->strings["InsaneJournal username"] = "nazwa użytkownika InsaneJournal";
$a->strings["InsaneJournal password"] = "Hasło InsaneJournal";
$a->strings["Post to InsaneJournal by default"] = "Wyślij domyślnie do InsaneJournal";
$a->strings["Submit"] = "Wyślij";