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