]> git.mxchange.org Git - friendica-addons.git/blob - nsfw/lang/cs/strings.php
CS translation of several addons THX Aditoo
[friendica-addons.git] / nsfw / 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["Content Filter (NSFW and more)"] = "Filtr obsahu (citlivý obsah a další)";
10 $a->strings["This addon searches for specified words/text in posts and collapses them. It can be used to filter content tagged with for instance #NSFW that may be deemed inappropriate at certain times or places, such as being at work. It is also useful for hiding irrelevant or annoying content from direct view."] = "Tento doplněk vyhledává specifikovaná slova/text v příspěvcích a skrývá je. Může být použit pro filtrování obsahu označeného štítky, jako například #NSFW, který může být považován za nevhodný v určitých časech či místech, například když jste v práci. Může být také užitečný ke skrývání nepodstatného či nepříjemného obsahu z přímého pohledu.";
11 $a->strings["Enable Content filter"] = "Povolit filtr obsahu";
12 $a->strings["Comma separated list of keywords to hide"] = "Čárkou oddělený seznam klíčových slov ke skrytí";
13 $a->strings["Save Settings"] = "Uložit nastavení";
14 $a->strings["Use /expression/ to provide regular expressions"] = "Použijte /výraz/ pro použití regulárních výrazů";
15 $a->strings["NSFW Settings saved."] = "Nastavení NSFW uloženo";
16 $a->strings["Filtered tag: %s"] = "Filtrovaná značka: %s";
17 $a->strings["Filtered word: %s"] = "Filtrované slovo: %s";