]> git.mxchange.org Git - friendica-addons.git/blobdiff - geonames/lang/cs/strings.php
Merge pull request #1076 from tobiasd/20210201-lngCmessages
[friendica-addons.git] / geonames / lang / cs / strings.php
index ced15b32d1e6d281d5cf1fae4b255d1e606360b4..78a3221ec44f15c5ef5f5c08b5d02a801841d1f9 100644 (file)
@@ -2,10 +2,11 @@
 
 if(! function_exists("string_plural_select_cs")) {
 function string_plural_select_cs($n){
-       return ($n==1) ? 0 : ($n>=2 && $n<=4) ? 1 : 2;;
+       $n = intval($n);
+       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["Geonames settings updated."] = "Geonames nastavení aktualizováno.";
+$a->strings["Geonames settings updated."] = "Nastavení Geonames aktualizována.";
 $a->strings["Geonames Settings"] = "Nastavení Geonames";
-$a->strings["Enable Geonames Plugin"] = "Povolit Geonames rozšíření";
-$a->strings["Save Settings"] = "Uložit Nastavení";
+$a->strings["Enable Geonames Addon"] = "Povolit doplněk Geonames";
+$a->strings["Submit"] = "Odeslat";