2014-09-06 15:59:46 +00:00
< ? php
if ( ! function_exists ( " string_plural_select_cs " )) {
function string_plural_select_cs ( $n ){
2018-06-10 06:03:58 +00:00
$n = intval ( $n );
2021-02-01 17:47:38 +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
}}
;
$a -> strings [ " Permission denied. " ] = " Přístup odmítnut. " ;
$a -> strings [ " Save Settings " ] = " Uložit Nastavení " ;
$a -> strings [ " Client ID " ] = " Client ID " ;
$a -> strings [ " Client Secret " ] = " Client Secret " ;
2018-09-17 19:04:59 +00:00
$a -> strings [ " Error when registering buffer connection: " ] = " Chyba při registraci připojení na buffer: " ;
$a -> strings [ " You are now authenticated to buffer. " ] = " Nyní jste přihlášen/a na buffer. " ;
$a -> strings [ " return to the connector page " ] = " zpět ke stránce konektoru " ;
$a -> strings [ " Post to Buffer " ] = " Posílat na Buffer " ;
2014-09-06 15:59:46 +00:00
$a -> strings [ " Buffer Export " ] = " Buffer Export " ;
2018-09-17 19:04:59 +00:00
$a -> strings [ " Authenticate your Buffer connection " ] = " Autentikujte své připojení na Buffer " ;
2018-06-10 06:03:58 +00:00
$a -> strings [ " Enable Buffer Post Addon " ] = " Povolit doplněk Buffer Post " ;
2018-09-17 19:04:59 +00:00
$a -> strings [ " Post to Buffer by default " ] = " Ve výchozím stavu posílat na Buffer " ;
$a -> strings [ " Check to delete this preset " ] = " Zaškrtnutím smažete toto nastavení " ;
$a -> strings [ " Posts are going to all accounts that are enabled by default: " ] = " Příspěvky budou posílány na všechny účty, které jsou ve výchozím stavu povoleny: " ;