forked from friendica/friendica-addons
showmore RU translation update THX Alexander An
This commit is contained in:
parent
fdc75fb73c
commit
abf61cd93f
44
showmore/lang/ru/messages.po
Normal file
44
showmore/lang/ru/messages.po
Normal file
|
@ -0,0 +1,44 @@
|
||||||
|
# ADDON showmore
|
||||||
|
# Copyright (C)
|
||||||
|
# This file is distributed under the same license as the Friendica showmore 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-04-01 11:11-0400\n"
|
||||||
|
"PO-Revision-Date: 2020-04-23 14:25+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"
|
||||||
|
|
||||||
|
#: showmore.php:41 showmore.php:45
|
||||||
|
msgid "\"Show more\" Settings"
|
||||||
|
msgstr "Настройки \"показать ещё\""
|
||||||
|
|
||||||
|
#: showmore.php:50
|
||||||
|
msgid "Enable Show More"
|
||||||
|
msgstr "Включить \"показать ещё\""
|
||||||
|
|
||||||
|
#: showmore.php:53
|
||||||
|
msgid "Cutting posts after how much characters"
|
||||||
|
msgstr "Обрезать записи после превышения этого числа символов"
|
||||||
|
|
||||||
|
#: showmore.php:57
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Сохранить настройки"
|
||||||
|
|
||||||
|
#: showmore.php:74
|
||||||
|
msgid "Show More Settings saved."
|
||||||
|
msgstr "Настройки сохранены."
|
||||||
|
|
||||||
|
#: showmore.php:134
|
||||||
|
msgid "show more"
|
||||||
|
msgstr "показать ещё"
|
|
@ -1,8 +1,14 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
$a->strings["\"Show more\" Settings"] = "";
|
if(! function_exists("string_plural_select_ru")) {
|
||||||
$a->strings["Enable Show More"] = "Включить Показать больше";
|
function string_plural_select_ru($n){
|
||||||
$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";
|
$n = intval($n);
|
||||||
$a->strings["Submit"] = "Подтвердить";
|
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["Show More Settings saved."] = "";
|
}}
|
||||||
$a->strings["show more"] = "показать больше";
|
;
|
||||||
|
$a->strings["\"Show more\" Settings"] = "Настройки \"показать ещё\"";
|
||||||
|
$a->strings["Enable Show More"] = "Включить \"показать ещё\"";
|
||||||
|
$a->strings["Cutting posts after how much characters"] = "Обрезать записи после превышения этого числа символов";
|
||||||
|
$a->strings["Save Settings"] = "Сохранить настройки";
|
||||||
|
$a->strings["Show More Settings saved."] = "Настройки сохранены.";
|
||||||
|
$a->strings["show more"] = "показать ещё";
|
||||||
|
|
Loading…
Reference in a new issue