PL translation wppost THX waldis
parent
5a4f93cac3
commit
fb93dc1f04
|
@ -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: 2017-01-24 21:06+0100\n"
|
"POT-Creation-Date: 2017-01-24 21:06+0100\n"
|
||||||
"PO-Revision-Date: 2018-03-31 20:26+0000\n"
|
"PO-Revision-Date: 2018-08-04 11:18+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"
|
||||||
|
@ -45,7 +45,7 @@ msgstr "WordPress API URL"
|
||||||
|
|
||||||
#: wppost.php:107
|
#: wppost.php:107
|
||||||
msgid "Post to WordPress by default"
|
msgid "Post to WordPress by default"
|
||||||
msgstr "Wyślij do WordPress domyślnie"
|
msgstr "Wyślij domyślnie do WordPress"
|
||||||
|
|
||||||
#: wppost.php:112
|
#: wppost.php:112
|
||||||
msgid "Provide a backlink to the Friendica post"
|
msgid "Provide a backlink to the Friendica post"
|
||||||
|
|
|
@ -2,6 +2,7 @@
|
||||||
|
|
||||||
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);;
|
||||||
}}
|
}}
|
||||||
;
|
;
|
||||||
|
@ -11,7 +12,7 @@ $a->strings["Enable WordPress Post Addon"] = "Włącz dodatek Dodaj post do Word
|
||||||
$a->strings["WordPress username"] = "Nazwa użytkownika WordPress";
|
$a->strings["WordPress username"] = "Nazwa użytkownika WordPress";
|
||||||
$a->strings["WordPress password"] = "Hasło WordPress";
|
$a->strings["WordPress password"] = "Hasło WordPress";
|
||||||
$a->strings["WordPress API URL"] = "WordPress API URL";
|
$a->strings["WordPress API URL"] = "WordPress API URL";
|
||||||
$a->strings["Post to WordPress by default"] = "Wyślij do WordPress domyślnie";
|
$a->strings["Post to WordPress by default"] = "Wyślij domyślnie do WordPress";
|
||||||
$a->strings["Provide a backlink to the Friendica post"] = "Podaj zwrotny link do posta Friendica";
|
$a->strings["Provide a backlink to the Friendica post"] = "Podaj zwrotny link do posta Friendica";
|
||||||
$a->strings["Text for the backlink, e.g. Read the original post and comment stream on Friendica."] = "Tekst linku zwrotnego, np. Przeczytaj oryginalny post i strumień komentarzy na stronie Friendica.";
|
$a->strings["Text for the backlink, e.g. Read the original post and comment stream on Friendica."] = "Tekst linku zwrotnego, np. Przeczytaj oryginalny post i strumień komentarzy na stronie Friendica.";
|
||||||
$a->strings["Don't post messages that are too short"] = "Nie publikuj zbyt krótkich wiadomości";
|
$a->strings["Don't post messages that are too short"] = "Nie publikuj zbyt krótkich wiadomości";
|
||||||
|
|
Loading…
Reference in New Issue