RU translation of forumlist addon THX pztrn
parent
ce51564083
commit
f2a77a01ad
|
@ -0,0 +1,60 @@
|
|||
# ADDON forumlist
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica forumlist addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Stanislav N. <pztrn@pztrn.name>, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2017-04-08 17:11+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"
|
||||
|
||||
#: forumlist.php:64
|
||||
msgid "Forums"
|
||||
msgstr "Форумы"
|
||||
|
||||
#: forumlist.php:67
|
||||
msgid "show/hide"
|
||||
msgstr "показать/скрыть"
|
||||
|
||||
#: forumlist.php:81
|
||||
msgid "No forum subscriptions"
|
||||
msgstr "Нет подписок на форумы"
|
||||
|
||||
#: forumlist.php:98
|
||||
msgid "Forums:"
|
||||
msgstr "Форумы:"
|
||||
|
||||
#: forumlist.php:134
|
||||
msgid "Forumlist settings updated."
|
||||
msgstr "Настройки Forumlist обновлены."
|
||||
|
||||
#: forumlist.php:162
|
||||
msgid "Forumlist Settings"
|
||||
msgstr "Настройки Forumlist"
|
||||
|
||||
#: forumlist.php:164
|
||||
msgid "Randomise forum list"
|
||||
msgstr "Случайный список форумов"
|
||||
|
||||
#: forumlist.php:167
|
||||
msgid "Show forums on profile page"
|
||||
msgstr "Показывать форумы на странице профиля"
|
||||
|
||||
#: forumlist.php:170
|
||||
msgid "Show forums on network page"
|
||||
msgstr "Показывать форумы на странице сети"
|
||||
|
||||
#: forumlist.php:178
|
||||
msgid "Submit"
|
||||
msgstr "Добавить"
|
|
@ -1,12 +1,17 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Forums"] = "Форумы";
|
||||
$a->strings["show/hide"] = "";
|
||||
$a->strings["No forum subscriptions"] = "";
|
||||
$a->strings["Forums:"] = "";
|
||||
$a->strings["Forumlist settings updated."] = "";
|
||||
$a->strings["Forumlist Settings"] = "";
|
||||
$a->strings["Randomise forum list"] = "";
|
||||
$a->strings["Show forums on profile page"] = "";
|
||||
$a->strings["Show forums on network page"] = "";
|
||||
$a->strings["Submit"] = "Подтвердить";
|
||||
<?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["Forums"] = "Форумы";
|
||||
$a->strings["show/hide"] = "показать/скрыть";
|
||||
$a->strings["No forum subscriptions"] = "Нет подписок на форумы";
|
||||
$a->strings["Forums:"] = "Форумы:";
|
||||
$a->strings["Forumlist settings updated."] = "Настройки Forumlist обновлены.";
|
||||
$a->strings["Forumlist Settings"] = "Настройки Forumlist";
|
||||
$a->strings["Randomise forum list"] = "Случайный список форумов";
|
||||
$a->strings["Show forums on profile page"] = "Показывать форумы на странице профиля";
|
||||
$a->strings["Show forums on network page"] = "Показывать форумы на странице сети";
|
||||
$a->strings["Submit"] = "Добавить";
|
||||
|
|
Loading…
Reference in New Issue