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
53
blockem/lang/ru/messages.po
Normal file
53
blockem/lang/ru/messages.po
Normal file
|
@ -0,0 +1,53 @@
|
|||
# ADDON blockem
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica blockem addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Stanislav N. <pztrn@pztrn.name>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
|
||||
"PO-Revision-Date: 2017-04-08 17:01+0000\n"
|
||||
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\n"
|
||||
"Language-Team: Russian (http://www.transifex.com/Friendica/friendica/language/ru/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: ru\n"
|
||||
"Plural-Forms: nplurals=4; plural=(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);\n"
|
||||
|
||||
#: blockem.php:53 blockem.php:57
|
||||
msgid "\"Blockem\""
|
||||
msgstr "\"Blockem\""
|
||||
|
||||
#: blockem.php:61
|
||||
msgid "Comma separated profile URLS to block"
|
||||
msgstr "Ссылки на профили, которые необходимо заблокировать, разделенные запятыми"
|
||||
|
||||
#: blockem.php:65
|
||||
msgid "Save Settings"
|
||||
msgstr "Сохранить настройки"
|
||||
|
||||
#: blockem.php:78
|
||||
msgid "BLOCKEM Settings saved."
|
||||
msgstr "BLOCKEM Настройки сохранены."
|
||||
|
||||
#: blockem.php:142
|
||||
#, php-format
|
||||
msgid "Blocked %s - Click to open/close"
|
||||
msgstr "Заблокированные %s - Нажмите, чтобы открыть/закрыть"
|
||||
|
||||
#: blockem.php:197
|
||||
msgid "Unblock Author"
|
||||
msgstr "Разблокировать автора"
|
||||
|
||||
#: blockem.php:199
|
||||
msgid "Block Author"
|
||||
msgstr "Блокировать автора"
|
||||
|
||||
#: blockem.php:231
|
||||
msgid "blockem settings updated"
|
||||
msgstr "Настройки Blockem обновлены"
|
|
@ -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-Настройки сохранены.";
|
||||
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\" настройки обновлены";
|
||||
$a->strings["Unblock Author"] = "Разблокировать автора";
|
||||
$a->strings["Block Author"] = "Блокировать автора";
|
||||
$a->strings["blockem settings updated"] = "Настройки Blockem обновлены";
|
||||
|
|
Loading…
Reference in a new issue