2014-09-06 15:59:46 +00:00
< ? php
2014-09-06 16:27:03 +00:00
if ( ! function_exists ( " string_plural_select_cs " )) {
function string_plural_select_cs ( $n ){
2018-06-12 14:07:11 +00:00
$n = intval ( $n );
return ( $n == 1 && $n % 1 == 0 ) ? 0 : ( $n >= 2 && $n <= 4 && $n % 1 == 0 ) ? 1 : ( $n % 1 != 0 ) ? 2 : 3 ;;
2014-09-06 16:27:03 +00:00
}}
;
2015-04-03 11:17:32 +00:00
$a -> strings [ " Jappix Mini addon settings " ] = " Nastavení rozšíření Jappix Mini " ;
2018-06-12 14:07:11 +00: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 19:25:33 +00:00
$a -> strings [ " Jabber username " ] = " Uživatelské jméno Jabber " ;
2014-09-06 16:27:03 +00:00
$a -> strings [ " Jabber server " ] = " Jabber server " ;
$a -> strings [ " Jabber BOSH host " ] = " Jabber BOSH host " ;
2018-09-17 19:25:33 +00: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 08:39:02 +00:00
$a -> strings [ " Friendica password " ] = " Heslo Friendica " ;
2018-09-17 19:25:33 +00: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 16:27:03 +00:00
$a -> strings [ " Purge internal list of jabber addresses of contacts " ] = " Očistit interní seznam jabber adres kontaktů " ;
2015-04-03 11:17:32 +00:00
$a -> strings [ " Submit " ] = " Odeslat " ;
2014-09-06 16:27:03 +00:00
$a -> strings [ " Add contact " ] = " Přidat kontakt " ;