]> 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 3c152f4876e1ce34cdc9002c5f2b96c8474a7b3a..d87397c735e6352e78d32259f67a56818c6b1a03 100644 (file)
@@ -3,7 +3,7 @@
 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);;
+       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";