updated CS translation of the jappixmini addon THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-12 16:07:11 +02:00
parent 277e26e919
commit ac1c0de0c3
2 changed files with 12 additions and 10 deletions

View file

@ -2,12 +2,13 @@
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);
return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
}}
;
$a->strings["Jappix Mini addon settings"] = "Nastavení rozšíření Jappix Mini";
$a->strings["Activate addon"] = "Aktivovat rozšíření";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>Nevlkádejte</em> Jappixmini Chat-Widget do webového rozhraní";
$a->strings["Activate addon"] = "Aktivovat doplněk";
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "<em>Nevkládejte</em> Jappixmini Chat-Widget do webového rozhraní";
$a->strings["Jabber username"] = "Jabber uživatelské jméno";
$a->strings["Jabber server"] = "Jabber server";
$a->strings["Jabber BOSH host"] = "Jabber BOSH host";