mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 11:28:49 +00:00
RU translation of blockem addon THX pztrn
This commit is contained in:
parent
ac09d8cef9
commit
ca911b3ff0
2 changed files with 68 additions and 10 deletions
|
@ -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 обновлены";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue