X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=buffer%2Flang%2Fcs%2Fstrings.php;h=971dbe9b24a6761b424105304c5492bd0b309405;hb=477bdcec89b62c56fd9a94454a1ed9e9e01b3cf8;hp=f6ecd1e34e366fd6524ec694442f23d0f2539bc4;hpb=39dd3dffe07efd69fa1ac6d0bd243c7fc0e3a66f;p=friendica-addons.git diff --git a/buffer/lang/cs/strings.php b/buffer/lang/cs/strings.php index f6ecd1e3..971dbe9b 100644 --- a/buffer/lang/cs/strings.php +++ b/buffer/lang/cs/strings.php @@ -2,20 +2,21 @@ 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["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"; -$a->strings["Error when registering buffer connection:"] = "Chyba při registraci buffer spojená"; -$a->strings["You are now authenticated to buffer. "] = "Nyní jste přihlášen k bufferu."; -$a->strings["return to the connector page"] = "návrat ke stránce konektor"; -$a->strings["Post to Buffer"] = "Příspěvek na Buffer"; +$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"; $a->strings["Buffer Export"] = "Buffer Export"; -$a->strings["Authenticate your Buffer connection"] = "Přihlásit ke spojení na Buffer"; -$a->strings["Enable Buffer Post Addon"] = "Povolit Buffer Post Addon"; -$a->strings["Post to Buffer by default"] = "Defaultně zaslat na Buffer"; -$a->strings["Check to delete this preset"] = "Zaškrtnout pro smazání tohoto nastavení"; -$a->strings["Posts are going to all accounts that are enabled by default:"] = "Příspěvky jsou zasílány na všechny účty, které jsou defaultně povoleny:"; +$a->strings["Authenticate your Buffer connection"] = "Autentikujte své připojení na Buffer"; +$a->strings["Enable Buffer Post Addon"] = "Povolit doplněk Buffer Post"; +$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:";