]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/lang/cs/strings.php
Fix signature of hooks to work with modern friendica
[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         if (($n == 1 && $n % 1 == 0)) { return 0; } else if (($n >= 2 && $n <= 4 && $n % 1 == 0)) { return 1; } else if (($n % 1 != 0 )) { return 2; } else  { return 3; }
7 }}
8 $a->strings['Filtered by rule: %s'] = 'Filtrováno podle pravidla: %s';
9 $a->strings['Advanced Content Filter'] = 'Rozšířený filtr obsahu';
10 $a->strings['Back to Addon Settings'] = 'Zpět na nastavení doplňku';
11 $a->strings['Add a Rule'] = 'Přidat pravidlo';
12 $a->strings['Help'] = 'Nápověda';
13 $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>.';
14 $a->strings['Your rules'] = 'Vaše pravidla';
15 $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.';
16 $a->strings['Disabled'] = 'Zakázáno';
17 $a->strings['Enabled'] = 'Povoleno';
18 $a->strings['Disable this rule'] = 'Zakázat toto pravidlo';
19 $a->strings['Enable this rule'] = 'Povolit toto pravidlo';
20 $a->strings['Edit this rule'] = 'Upravit toto pravidlo';
21 $a->strings['Edit the rule'] = 'Upravit pravidlo';
22 $a->strings['Save this rule'] = 'Uložit toto pravidlo';
23 $a->strings['Delete this rule'] = 'Smazat toto pravidlo';
24 $a->strings['Rule'] = 'Pravidlo';
25 $a->strings['Close'] = 'Zavřít';
26 $a->strings['Add new rule'] = 'Přidat nové pravidlo';
27 $a->strings['Rule Name'] = 'Název pravidla';
28 $a->strings['Rule Expression'] = 'Výraz pravidla';
29 $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>';
30 $a->strings['Cancel'] = 'Zrušit';
31 $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';
32 $a->strings['Invalid form security token, please refresh the page.'] = 'Neplatná forma bezpečnostního tokenu, prosím obnovte stránku.';
33 $a->strings['The rule name and expression are required.'] = 'Je požadován název pravidla a výraz.';
34 $a->strings['Rule successfully added'] = 'Pravidlo úspěšně přidáno';
35 $a->strings['Rule doesn\'t exist or doesn\'t belong to you.'] = 'Pravidlo buď neexistuje, nebo Vám nepatří.';
36 $a->strings['Rule successfully updated'] = 'Pravidlo úspěšně aktualizováno';
37 $a->strings['Rule successfully deleted'] = 'Pravidlo úspěšně smazáno';
38 $a->strings['Missing argument: guid.'] = 'Chybí argument: guid.';
39 $a->strings['Unknown post with guid: %s'] = 'Neznámý pžíspěvek s číslem guid: %s';
40 $a->strings['Method not found'] = 'Metoda nenalezena';