RU translation of blockem addon THX pztrn

This commit is contained in:
Tobias Diekershoff 2017-04-09 07:49:12 +02:00
parent ac09d8cef9
commit ca911b3ff0
2 changed files with 68 additions and 10 deletions

View file

@ -1,10 +1,15 @@
<?php
$a->strings["\"Blockem\" Settings"] = "\"Blockem\" настройки";
$a->strings["Comma separated profile URLS to block"] = "URLS, которые заблокировать (список через запятую)";
$a->strings["Submit"] = "Подтвердить";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM-Настройки сохранены.";
$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть";
$a->strings["Unblock Author"] = "";
$a->strings["Block Author"] = "Блокировать Автора";
$a->strings["blockem settings updated"] = "\"Blockem\" настройки обновлены";
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($n){
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);;
}}
;
$a->strings["\"Blockem\""] = "\"Blockem\"";
$a->strings["Comma separated profile URLS to block"] = "Ссылки на профили, которые необходимо заблокировать, разделенные запятыми";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["BLOCKEM Settings saved."] = "BLOCKEM Настройки сохранены.";
$a->strings["Blocked %s - Click to open/close"] = "Заблокированные %s - Нажмите, чтобы открыть/закрыть";
$a->strings["Unblock Author"] = "Разблокировать автора";
$a->strings["Block Author"] = "Блокировать автора";
$a->strings["blockem settings updated"] = "Настройки Blockem обновлены";