]> git.mxchange.org Git - friendica-addons.git/blob - langfilter/lang/cs/strings.php
PL translation libertree THX waldis
[friendica-addons.git] / langfilter / 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["Language Filter"] = "Jazykový filtr";
10 $a->strings["This addon tries to identify the language posts are writen in. If it does not match any language specifed below, posts will be hidden by collapsing them."] = "Tento doplněk zkouší identifikovat jazyk, ve kterém jsou napsány příspěvky. Pokud nelze přiřadit příspěvky k žádnému níže specifikovanému jazyku, příspěvky budou zabaleny.";
11 $a->strings["Use the language filter"] = "Použít jazykový filtr";
12 $a->strings["Able to read"] = "Lze číst";
13 $a->strings["List of abbreviations (iso2 codes) for languages you speak, comma separated. For example \"de,it\"."] = "Seznam zkratek (kódů ISO 2) pro jazyky, kterými mluvíte, oddělených čárkami. Příklad: \"cs,sk\".";
14 $a->strings["Minimum confidence in language detection"] = "Minimální jistota v detekci jazyka";
15 $a->strings["Minimum confidence in language detection being correct, from 0 to 100. Posts will not be filtered when the confidence of language detection is below this percent value."] = "Minimální jistota ve správnost detekce jazyka, od 0 do 100. Pokud jistota v detekci spadne pod tuto úroveň, nebudou příspěvky filtrovány.";
16 $a->strings["Minimum length of message body"] = "Minimální délka těla zprávy";
17 $a->strings["Minimum number of characters in message body for filter to be used. Posts shorter than this will not be filtered. Note: Language detection is unreliable for short content (<200 characters)."] = "Minimální počet znaků v těle zprávy pro použití filtru. Kratší zprávy nebudou filtrovány. Poznámka: Detekce jazyka je nespolehlivá pro krátký obsah (<200 znaků).";
18 $a->strings["Save Settings"] = "Uložit nastavení";
19 $a->strings["Language Filter Settings saved."] = "Nastavení Language Filter uložena.";
20 $a->strings["Filtered language: %s"] = "Filtrovaný jazyk: %s";