mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-09 18:08:49 +00:00
CS translation fromapp THX Aditoo
This commit is contained in:
parent
45cff3affd
commit
ed9297ea25
2 changed files with 16 additions and 14 deletions
|
@ -2,11 +2,12 @@
|
|||
|
||||
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["Fromapp settings updated."] = "Fromapp nastavení aktualizováno.";
|
||||
$a->strings["FromApp Settings"] = "FromApp nastavení";
|
||||
$a->strings["The application name you would like to show your posts originating from."] = "Jméno zdrojové aplikace";
|
||||
$a->strings["Use this application name even if another application was used."] = "Použij toto jméno aplikace i když byla použita jiná aplikace";
|
||||
$a->strings["Fromapp settings updated."] = "Nastavení FromApp aktualizována.";
|
||||
$a->strings["FromApp Settings"] = "Nastavení FromApp";
|
||||
$a->strings["The application name you would like to show your posts originating from."] = "Jméno aplikace, která má být zobrazena jako zdroj Vašich příspěvků.";
|
||||
$a->strings["Use this application name even if another application was used."] = "Použít toto jméno aplikace, i když byla použita jiná aplikace";
|
||||
$a->strings["Submit"] = "Odeslat";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue