]> git.mxchange.org Git - friendica-addons.git/blob - advancedcontentfilter/lang/ru/strings.php
regenerated all the strings
[friendica-addons.git] / advancedcontentfilter / lang / ru / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_ru")) {
4 function string_plural_select_ru($n){
5         $n = intval($n);
6         if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else  { return 3; }
7 }}
8 $a->strings['Filtered by rule: %s'] = 'Отфильтровано по правилу: %s';
9 $a->strings['Advanced Content Filter'] = 'Расширенный фильтр содержимого';
10 $a->strings['Back to Addon Settings'] = 'Вернуться к настройкам дополнений';
11 $a->strings['Add a Rule'] = 'Добавить правило';
12 $a->strings['Help'] = 'Помощь';
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>.'] = 'Добавляйте и управляйте своими собственными фильтрами на этой странице. У правил есть имя и произвольное выражение, которое будет сопоставляться с данными поста. Для полной ссылки на доступные операции и переменные, посмотрите <a href="advancedcontentfilter/help">страницу справки</a>.';
14 $a->strings['Your rules'] = 'Ваши правила';
15 $a->strings['You have no rules yet! Start adding one by clicking on the button above next to the title.'] = 'У Вас нет ни одного правила. Начните добавление первого с нажатия на кнопку выше, рядом с названием.';
16 $a->strings['Disabled'] = 'Отключено';
17 $a->strings['Enabled'] = 'Включено';
18 $a->strings['Disable this rule'] = 'Отключить это правило';
19 $a->strings['Enable this rule'] = 'Включить это правило';
20 $a->strings['Edit this rule'] = 'Изменить это правило';
21 $a->strings['Edit the rule'] = 'Изменить правило';
22 $a->strings['Save this rule'] = 'Сохранить это правило';
23 $a->strings['Delete this rule'] = 'Удалить это правило';
24 $a->strings['Rule'] = 'Правило';
25 $a->strings['Close'] = 'Закрыть';
26 $a->strings['Add new rule'] = 'Добавить новое правило';
27 $a->strings['Rule Name'] = 'Название правила';
28 $a->strings['Rule Expression'] = 'Содержание правила';
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><ul><li><pre>author_link == \'https://friendica.mrpetovan.com/profile/hypolite\'</pre></li><li>tags</li></ul>';
30 $a->strings['Cancel'] = 'Отмена';
31 $a->strings['You must be logged in to use this method'] = 'Вы должны авторизоваться для использования этого метода';
32 $a->strings['Invalid form security token, please refresh the page.'] = 'Неверный ключ, пожалуйста, перезагрузите страницу';
33 $a->strings['The rule name and expression are required.'] = 'Требуется ввести название и значение правила.';
34 $a->strings['Rule successfully added'] = 'Правило успешно добавлено';
35 $a->strings['Rule doesn\'t exist or doesn\'t belong to you.'] = 'Правило не найдено или доступ к нему закрыт';
36 $a->strings['Rule successfully updated'] = 'Правило успешно обновлено';
37 $a->strings['Rule successfully deleted'] = 'Правило успешно удалено';
38 $a->strings['Missing argument: guid.'] = 'Отсутствующий аргумент: guid.';
39 $a->strings['Unknown post with guid: %s'] = 'Неизвестный пост в ID: %s';
40 $a->strings['Method not found'] = 'Метод не найден';