]> 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 6d02b09f622c54d55d4ab4877d827a6e5498ac70..87e4468cefc224061b68decfa5b9130b6985803d 100644 (file)
@@ -2,13 +2,14 @@
 
 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["Post to Dreamwidth"] = "Poslat na Dreamwidth";
-$a->strings["Dreamwidth Post Settings"] = "Dreamwidth nastavení příspěvků";
-$a->strings["Enable dreamwidth Post Plugin"] = "Povolit dreamwidth Plugin";
+$a->strings["Dreamwidth Post Settings"] = "Nastavení Dreamwidth Post";
+$a->strings["Enable dreamwidth Post Addon"] = "Povolit doplněk Dreamwidth Post";
 $a->strings["dreamwidth username"] = "dreamwidth uživatelské jméno";
 $a->strings["dreamwidth password"] = "dreamwidth heslo";
-$a->strings["Post to dreamwidth by default"] = "Defaultně umístit na dreamwidth";
+$a->strings["Post to dreamwidth by default"] = "Ve výchozím stavu posílat na dreamwidth";
 $a->strings["Submit"] = "Odeslat";