]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/lang/cs/strings.php
Merge pull request #626 from annando/more-abstraction
[friendica-addons.git] / advancedcontentfilter / 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["Filtered by rule: %s"] = "Filtrováno podle pravidla: %s";
10 $a->strings["Advanced Content Filter"] = "Rozšířený filtr obsahu";
11 $a->strings["Back to Addon Settings"] = "Zpět na nastavení doplňku";
12 $a->strings["Add a Rule"] = "Přidat pravidlo";
13 $a->strings["Help"] = "Nápověda";
14 $a->strings["Add and manage your personal content filter rules in this screen. Rules have a name and an arbitrary expression that will be matched against post data. For a complete reference of the available operations and variables, check the <a href=\"advancedcontentfilter/help\">help page</a>."] = "Přidávejte a spravujte Vaše osobní pravidla pro filtrování obsahu na této obrazovce. Pravidla mají název a libovolný výraz, který bude porovnán s daty příspěvku. Pro úplnou referenci dostupných operací a proměnných navštivte <a href=\"advancedcontentfilter/help\">stránku nápovědy</a>.";
15 $a->strings["Your rules"] = "Vaše pravidla";
16 $a->strings["You have no rules yet! Start adding one by clicking on the button above next to the title."] = "Ještě nemáte žádná pravidla! Přidejte první kliknutím na tlačítko nahoře vedle nadpisu.";
17 $a->strings["Disabled"] = "Zakázáno";
18 $a->strings["Enabled"] = "Povoleno";
19 $a->strings["Disable this rule"] = "Zakázat toto pravidlo";
20 $a->strings["Enable this rule"] = "Povolit toto pravidlo";
21 $a->strings["Edit this rule"] = "Upravit toto pravidlo";
22 $a->strings["Edit the rule"] = "Upravit pravidlo";
23 $a->strings["Save this rule"] = "Uložit toto pravidlo";
24 $a->strings["Delete this rule"] = "Smazat toto pravidlo";
25 $a->strings["Rule"] = "Pravidlo";
26 $a->strings["Close"] = "Zavřít";
27 $a->strings["Add new rule"] = "Přidat nové pravidlo";
28 $a->strings["Rule Name"] = "Název pravidla";
29 $a->strings["Rule Expression"] = "Výraz pravidla";
30 $a->strings["<p>Examples:</p><ul><li><pre>author_link == 'https://friendica.mrpetovan.com/profile/hypolite'</pre></li><li>tags</li></ul>"] = "<p>Příklady:</p><ul><li><pre>author_link == 'https://friendica.mrpetovan.com/profile/hypolite'</pre></li><li>tags</li></ul>";
31 $a->strings["Cancel"] = "Zrušit";
32 $a->strings["You must be logged in to use this method"] = "Pro použití této metody musíte být přihlášen/a";
33 $a->strings["Invalid form security token, please refresh the page."] = "Neplatná forma bezpečnostního tokenu, prosím obnovte stránku.";
34 $a->strings["The rule name and expression are required."] = "Je požadován název pravidla a výraz.";
35 $a->strings["Rule successfully added"] = "Pravidlo úspěšně přidáno";
36 $a->strings["Rule doesn't exist or doesn't belong to you."] = "Pravidlo buď neexistuje, nebo Vám nepatří.";
37 $a->strings["Rule successfully updated"] = "Pravidlo úspěšně aktualizováno";
38 $a->strings["Rule successfully deleted"] = "Pravidlo úspěšně smazáno";
39 $a->strings["Missing argument: guid."] = "Chybí argument: guid.";
40 $a->strings["Unknown post with guid: %s"] = "Neznámý pžíspěvek s číslem guid: %s";
41 $a->strings["Method not found"] = "Metoda nenalezena";