2014-09-06 15:59:46 +00:00
< ? php
if ( ! function_exists ( " string_plural_select_cs " )) {
function string_plural_select_cs ( $n ){
2021-02-01 17:47:38 +00:00
$n = intval ( $n );
2023-04-09 05:58:49 +00: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 15:59:46 +00:00
}}
2021-10-10 06:27:53 +00:00
$a -> strings [ 'From Address' ] = 'Adresa odesílatele' ;
$a -> strings [ 'Email address that stream items will appear to be from.' ] = 'Adresa, která vysílá položky, se objeví jako odesílatel.' ;
2023-04-09 05:58:49 +00:00
$a -> strings [ 'Save Settings' ] = 'Uložit nastavení' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Re:' ] = 'Re:' ;
2023-04-09 05:58:49 +00:00
$a -> strings [ 'Friendica post' ] = 'Příspěvek z Friendica' ;
$a -> strings [ 'Diaspora post' ] = 'Příspěvek z Diaspora' ;
$a -> strings [ 'Feed item' ] = 'Položka kanálu' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Email' ] = 'E-mail' ;
2023-04-09 05:58:49 +00:00
$a -> strings [ 'Friendica Item' ] = 'Položka z Friendica' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Upstream' ] = 'Upstream' ;
2023-04-09 05:58:49 +00:00
$a -> strings [ 'Local' ] = 'Místní' ;
$a -> strings [ 'Enabled' ] = 'Povoleno' ;
2021-10-10 06:27:53 +00:00
$a -> strings [ 'Email Address' ] = 'E-mailová adresa' ;
$a -> strings [ 'Leave blank to use your account email address' ] = 'Ponechte prázdné pro použití vaší e-mailové adresy' ;
2023-04-09 05:58:49 +00:00
$a -> strings [ 'Exclude Likes' ] = 'Vynechávat "lajky"' ;
$a -> strings [ 'Check this to omit mailing "Like" notifications' ] = 'Zaškrtnutím vypnete posílání oznámení o "To se mi líbí"' ;
$a -> strings [ 'Attach Images' ] = 'Připojit obrázky' ;
$a -> strings [ 'Download images in posts and attach them to the email. Useful for reading email while offline.' ] = 'Stahovat obrázky v příspěvcích a připojovat je k e-mailu. Užitečné pro čtení e-mailu, když jste offline.' ;
$a -> strings [ 'Mail Stream Settings' ] = 'Nastavení Mail Stream' ;