]> git.mxchange.org Git - friendica-addons.git/blobdiff - dwpost/lang/cs/strings.php
regenerated all the strings
[friendica-addons.git] / dwpost / lang / cs / strings.php
index 0c1f68a43708278a4b51b9d121f926451c559f54..586b7707013b4a7a9884ddd23d1d5e9344e6b238 100644 (file)
@@ -3,13 +3,12 @@
 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";
-$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"] = "Ve výchozím stavu posílat na dreamwidth";
-$a->strings["Submit"] = "Odeslat";
+$a->strings['Post to Dreamwidth'] = 'Poslat na Dreamwidth';
+$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'] = 'Ve výchozím stavu posílat na dreamwidth';
+$a->strings['Submit'] = 'Odeslat';