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) # 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: # Translators:
@ -10,7 +10,7 @@ msgstr ""
"Project-Id-Version: friendica\n" "Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n" "Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2013-02-27 05:01-0500\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" "Last-Translator: Waldemar Stoczkowski <waldemar.stoczkowski@gmail.com>\n"
"Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n" "Language-Team: Polish (http://www.transifex.com/Friendica/friendica/language/pl/)\n"
"MIME-Version: 1.0\n" "MIME-Version: 1.0\n"
@ -19,30 +19,30 @@ msgstr ""
"Language: pl\n" "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" "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 #: ijpost.php:39
msgid "Post to LiveJournal" msgid "Post to Insanejournal"
msgstr "Opublikuj w LiveJournal" msgstr "Opublikuj w Insanejournal"
#: ljpost.php:70 #: ijpost.php:70
msgid "LiveJournal Post Settings" msgid "InsaneJournal Post Settings"
msgstr "Ustawienia Postów LiveJournal" msgstr "Ustawienia InsaneJournal Post"
#: ljpost.php:72 #: ijpost.php:72
msgid "Enable LiveJournal Post Addon" msgid "Enable InsaneJournal Post Addon"
msgstr "Włącz dodatek LiveJournal" msgstr "Włącz dodatek InsaneJournal"
#: ljpost.php:77 #: ijpost.php:77
msgid "LiveJournal username" msgid "InsaneJournal username"
msgstr "Nazwa użytkownika LiveJournal" msgstr "nazwa użytkownika InsaneJournal"
#: ljpost.php:82 #: ijpost.php:82
msgid "LiveJournal password" msgid "InsaneJournal password"
msgstr "Hasło LiveJournal" msgstr "Hasło InsaneJournal"
#: ljpost.php:87 #: ijpost.php:87
msgid "Post to LiveJournal by default" msgid "Post to InsaneJournal by default"
msgstr "Opublikuj domyślnie w LiveJournal" msgstr "Wyślij domyślnie do InsaneJournal"
#: ljpost.php:93 #: ijpost.php:93
msgid "Submit" msgid "Submit"
msgstr "Wyślij" msgstr "Wyślij"

View File

@ -2,13 +2,14 @@
if(! function_exists("string_plural_select_pl")) { if(! function_exists("string_plural_select_pl")) {
function string_plural_select_pl($n){ 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);; 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["Post to Insanejournal"] = "Opublikuj w Insanejournal";
$a->strings["LiveJournal Post Settings"] = "Ustawienia Postów LiveJournal"; $a->strings["InsaneJournal Post Settings"] = "Ustawienia InsaneJournal Post";
$a->strings["Enable LiveJournal Post Addon"] = "Włącz dodatek LiveJournal"; $a->strings["Enable InsaneJournal Post Addon"] = "Włącz dodatek InsaneJournal";
$a->strings["LiveJournal username"] = "Nazwa użytkownika LiveJournal"; $a->strings["InsaneJournal username"] = "nazwa użytkownika InsaneJournal";
$a->strings["LiveJournal password"] = "Hasło LiveJournal"; $a->strings["InsaneJournal password"] = "Hasło InsaneJournal";
$a->strings["Post to LiveJournal by default"] = "Opublikuj domyślnie w LiveJournal"; $a->strings["Post to InsaneJournal by default"] = "Wyślij domyślnie do InsaneJournal";
$a->strings["Submit"] = "Wyślij"; $a->strings["Submit"] = "Wyślij";