]> git.mxchange.org Git - friendica-addons.git/blobdiff - wppost/lang/pl/strings.php
Bump phpmailer/phpmailer from 6.1.6 to 6.5.0 in /phpmailer
[friendica-addons.git] / wppost / lang / pl / strings.php
index 23e6809cdf8e101c5f450ca021a1ac7188f78188..d87397c735e6352e78d32259f67a56818c6b1a03 100644 (file)
@@ -2,7 +2,8 @@
 
 if(! function_exists("string_plural_select_pl")) {
 function string_plural_select_pl($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);;
+       $n = intval($n);
+       if ($n==1) { return 0; } else if (($n%10>=2 && $n%10<=4) && ($n%100<12 || $n%100>14)) { return 1; } else if ($n!=1 && ($n%10>=0 && $n%10<=1) || ($n%10>=5 && $n%10<=9) || ($n%100>=12 && $n%100<=14)) { return 2; } else  { return 3; }
 }}
 ;
 $a->strings["Post to Wordpress"] = "Opublikuj w Wordpress";
@@ -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 password"] = "Hasło WordPress";
 $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["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";