CS and EN-US localization update of the blockem addon
[friendica-addons.git/.git] / blockem / lang / cs / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_cs")) {
4 function string_plural_select_cs($n){
5         $n = intval($n);
6         return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
7 }}
8 ;
9 $a->strings["\"Blockem\""] = "\"Blockem\"";
10 $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.";
11 $a->strings["Comma separated profile URLS:"] = "URL adresy profilů, oddělené čárkami:";
12 $a->strings["Save Settings"] = "Uložit nastavení";
13 $a->strings["BLOCKEM Settings saved."] = "Nastavení BLOCKEM uložena.";
14 $a->strings["Filtered user: %s"] = "Filtrovaný uživatel: %s";
15 $a->strings["Unblock Author"] = "Odblokovat autora";
16 $a->strings["Block Author"] = "Zablokovat autora";
17 $a->strings["blockem settings updated"] = "nastavení blockem aktualizována";