superblock addon RU translation update THX Alexander An

This commit is contained in:
Tobias Diekershoff 2020-06-15 09:14:40 +02:00
parent 2ec0eb6745
commit 0734b5620d
2 changed files with 58 additions and 10 deletions

View File

@ -0,0 +1,44 @@
# ADDON superblock
# Copyright (C)
# This file is distributed under the same license as the Friendica superblock addon package.
#
#
# Translators:
# Alexander An <ravnina@gmail.com>, 2020
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2018-08-17 10:25+0200\n"
"PO-Revision-Date: 2020-04-23 14:10+0000\n"
"Last-Translator: Alexander An <ravnina@gmail.com>\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"
#: superblock.php:47 superblock.php:51
msgid "Superblock"
msgstr "Superblock"
#: superblock.php:54
msgid "Comma separated profile URLS to block"
msgstr "Ссылки на блокируемые профили через запятую"
#: superblock.php:58
msgid "Save Settings"
msgstr "Сохранить настройки"
#: superblock.php:71
msgid "SUPERBLOCK Settings saved."
msgstr "Настройки Superblock сохранены"
#: superblock.php:144
msgid "Block Completely"
msgstr "Заблокировать совсем"
#: superblock.php:165
msgid "superblock settings updated"
msgstr "настройки superblock обновлены"

View File

@ -1,10 +1,14 @@
<?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){
$n = intval($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["Superblock"] = "Superblock";
$a->strings["Comma separated profile URLS to block"] = "Ссылки на блокируемые профили через запятую";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["SUPERBLOCK Settings saved."] = "Настройки Superblock сохранены";
$a->strings["Block Completely"] = "Заблокировать совсем";
$a->strings["superblock settings updated"] = "настройки superblock обновлены";