CS and EN-US localization update of the blockem addon

This commit is contained in:
Tobias Diekershoff 2018-06-18 08:40:51 +02:00
parent 5f3320ef58
commit e4b84f3063
4 changed files with 39 additions and 28 deletions

View file

@ -2,14 +2,16 @@
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["\"Blockem\""] = "\"Blockem\"";
$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["BLOCKEM Settings saved."] = "BLOCKEM nastavení uloženo.";
$a->strings["Blocked %s - Click to open/close"] = "Blokován %s - Klikněte pro otevření/zavření";
$a->strings["Hides user's content by collapsing posts. Also replaces their avatar with generic image."] = "Skrývá uživatelský obsah zabalením příspěvků. Navíc nahrazuje avatar generickým obrázkem.";
$a->strings["Comma separated profile URLS:"] = "URL adresy profilů, oddělené čárkami:";
$a->strings["Save Settings"] = "Uložit nastavení";
$a->strings["BLOCKEM Settings saved."] = "Nastavení BLOCKEM uložena.";
$a->strings["Filtered user: %s"] = "Filtrovaný uživatel: %s";
$a->strings["Unblock Author"] = "Odblokovat autora";
$a->strings["Block Author"] = "Zablokovat autora";
$a->strings["blockem settings updated"] = "blockem nastavení aktualizováno";
$a->strings["blockem settings updated"] = "nastavení blockem aktualizována";