]> git.mxchange.org Git - friendica-addons.git/blobdiff - xmpp/lang/cs/strings.php
Merge pull request #1133 from mexon/mat/mailstream-workerqueue
[friendica-addons.git] / xmpp / lang / cs / strings.php
index 4601f8906d1222b294e55d1b7af0ad7737827aac..8574773e3defa94cfdfa4da19c6cc20c0eb12030 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["XMPP settings updated."] = "Nastavení XMPP aktualizována";
@@ -13,5 +13,4 @@ $a->strings["Individual Credentials"] = "Jednotlivé kredenciály";
 $a->strings["Jabber BOSH host"] = "BOSH host Jabber";
 $a->strings["Save Settings"] = "Uložit nastavení";
 $a->strings["Use central userbase"] = "Použít centrální uživatelskou základnu";
-$a->strings["If enabled, users will automatically login to an ejabberd server that has to be installed on this machine with synchronized credentials via the \"auth_ejabberd.php\" script."] = "Pokud tuto funkci povolíte, uživatelé budou automaticky přihlášeni na server ejabberd, který musí být nainstalovaný na tomto serveru se synchronizovanými kredenciálami přes skript \"auth_ejabberd.php\".";
 $a->strings["Settings updated."] = "Nastavení aktualizována";