showmore RU translation update THX Alexander An

This commit is contained in:
Tobias Diekershoff 2020-06-15 08:23:22 +02:00
parent fdc75fb73c
commit abf61cd93f
2 changed files with 58 additions and 8 deletions

View 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 "показать ещё"

View File

@ -1,8 +1,14 @@
<?php
$a->strings["\"Show more\" Settings"] = "";
$a->strings["Enable Show More"] = "Включить Показать больше";
$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Show More Settings saved."] = "";
$a->strings["show more"] = "показать больше";
<?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["\"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"] = "показать ещё";