mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
updated CS translation of the jappixmini addon THX Aditoo
This commit is contained in:
parent
277e26e919
commit
ac1c0de0c3
2 changed files with 12 additions and 10 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue