mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-10 18:38:49 +00:00
CS, EN US localization superblock addon
This commit is contained in:
parent
14996bd9b0
commit
befc6eeb58
4 changed files with 85 additions and 24 deletions
|
@ -2,12 +2,13 @@
|
|||
|
||||
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["\"Superblock\" Settings"] = "\"Superblock\" Nastavení";
|
||||
$a->strings["\"Superblock\""] = "\"Superblock\"";
|
||||
$a->strings["Comma separated profile URLS to block"] = "Čárkou oddělené URL adresy profilů určených k ignorování";
|
||||
$a->strings["Save Settings"] = "Uložit Nastavení";
|
||||
$a->strings["SUPERBLOCK Settings saved."] = "SUPERBLOCK nastavení uloženo.";
|
||||
$a->strings["Block Completely"] = "Kompletně blokovat ";
|
||||
$a->strings["superblock settings updated"] = "superblock nastavení aktualizováno.";
|
||||
$a->strings["Save Settings"] = "Uložit nastavení";
|
||||
$a->strings["SUPERBLOCK Settings saved."] = "Nastavení SUPERBLOCK uložena";
|
||||
$a->strings["Block Completely"] = "Zablokovat úplně";
|
||||
$a->strings["superblock settings updated"] = "nastavvení superblock aktualizována";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue