updated CS translation of the fromgplus addon THX Aditoo

This commit is contained in:
Tobias Diekershoff 2018-06-12 16:17:16 +02:00
parent a5b1984e74
commit f95abcbe07
2 changed files with 38 additions and 20 deletions

View file

@ -2,11 +2,15 @@
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["Google+ Import Settings"] = "Nastavení importu z Google+ ";
$a->strings["Google+ Mirror"] = "Zrcadlení Google+";
$a->strings["Enable Google+ Import"] = "Povolit Import z Google+";
$a->strings["Google Account ID"] = "název účtu Google ";
$a->strings["Submit"] = "Odeslat";
$a->strings["Google Account ID"] = "ID účtu Google ";
$a->strings["Add keywords to post"] = "Přidat k příspěvku klíčová slova";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["Google+ Import Settings saved."] = "Nastavení importu z Google+ uloženo.";
$a->strings["Key"] = "Klíč";
$a->strings["Settings updated."] = "Nastavení aktualizována";