mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 00:48:55 +00:00
updated CS translation of the fromgplus addon THX Aditoo
This commit is contained in:
parent
a5b1984e74
commit
f95abcbe07
2 changed files with 38 additions and 20 deletions
|
@ -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";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue