2014-09-06 11:59:46 -04:00
< ? php
2014-09-06 12:27:03 -04:00
if ( ! function_exists ( " string_plural_select_cs " )) {
function string_plural_select_cs ( $n ){
2018-06-12 10:07:11 -04:00
$n = intval ( $n );
2021-02-01 12:47:38 -05:00
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 ; }
2014-09-06 12:27:03 -04:00
}}
;
2015-04-03 07:17:32 -04:00
$a -> strings [ " Jappix Mini addon settings " ] = " Nastavení rozšíření Jappix Mini " ;
2018-06-12 10:07:11 -04:00
$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í " ;
2018-09-17 15:25:33 -04:00
$a -> strings [ " Jabber username " ] = " Uživatelské jméno Jabber " ;
2014-09-06 12:27:03 -04:00
$a -> strings [ " Jabber server " ] = " Jabber server " ;
$a -> strings [ " Jabber BOSH host " ] = " Jabber BOSH host " ;
2018-09-17 15:25:33 -04:00
$a -> strings [ " Jabber password " ] = " Heslo Jabber " ;
$a -> strings [ " Encrypt Jabber password with Friendica password (recommended) " ] = " Zašifrovat heslo Jabber heslem Friendica (doporučeno) " ;
2018-08-17 04:39:02 -04:00
$a -> strings [ " Friendica password " ] = " Heslo Friendica " ;
2018-09-17 15:25:33 -04:00
$a -> strings [ " Approve subscription requests from Friendica contacts automatically " ] = " Automaticky schválit požadavek o odběr od kontaktů Friendica. " ;
$a -> strings [ " Subscribe to Friendica contacts automatically " ] = " Automaticky odebírat od kontaktů Friendica. " ;
2014-09-06 12:27:03 -04:00
$a -> strings [ " Purge internal list of jabber addresses of contacts " ] = " Očistit interní seznam jabber adres kontaktů " ;
2015-04-03 07:17:32 -04:00
$a -> strings [ " Submit " ] = " Odeslat " ;
2014-09-06 12:27:03 -04:00
$a -> strings [ " Add contact " ] = " Přidat kontakt " ;