]> git.mxchange.org Git - friendica-addons.git/blobdiff - dwpost/lang/cs/strings.php
cookienotice addon FR translation updated THX bob lebonche
[friendica-addons.git] / dwpost / lang / cs / strings.php
index 0c1f68a43708278a4b51b9d121f926451c559f54..87e4468cefc224061b68decfa5b9130b6985803d 100644 (file)
@@ -3,7 +3,7 @@
 if(! function_exists("string_plural_select_cs")) {
 function string_plural_select_cs($n){
        $n = intval($n);
-       return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
+       if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else  { return 3; }
 }}
 ;
 $a->strings["Post to Dreamwidth"] = "Poslat na Dreamwidth";