mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-07 08:58:49 +00:00
updates CS translation of the catavatar, pageheader, randplace and tumblr addons THX Aditoo
This commit is contained in:
parent
eeeb7b5634
commit
3db811e5c5
8 changed files with 71 additions and 53 deletions
|
@ -2,17 +2,18 @@
|
|||
|
||||
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["You are now authenticated to tumblr."] = "Nyní jste přihlášen k tumblr.";
|
||||
$a->strings["return to the connector page"] = "návrat ke stránce konektor";
|
||||
$a->strings["Post to Tumblr"] = "Příspěvek na Tumbir";
|
||||
$a->strings["Tumblr Export"] = "Tumbir export";
|
||||
$a->strings["Tumblr Post Settings"] = "Nastavení Tumblr Post";
|
||||
$a->strings["(Re-)Authenticate your tumblr page"] = "(Znovu) přihlásit k Vaší tumblr stránce";
|
||||
$a->strings["Enable Tumblr Post Addon"] = "Povolit rozšíření Tumbir";
|
||||
$a->strings["Enable Tumblr Post Addon"] = "Povolit doplněk Tumblr Post";
|
||||
$a->strings["Post to Tumblr by default"] = "Standardně posílat příspěvky na Tumbir";
|
||||
$a->strings["Post to page:"] = "Příspěvek ke stránce:";
|
||||
$a->strings["You are not authenticated to tumblr"] = "Nyní nejste přihlášen k tumblr.";
|
||||
$a->strings["Save Settings"] = "Uložit Nastavení";
|
||||
$a->strings["Submit"] = "Odeslat";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue