qcomment RU translation update THX Alexander An

This commit is contained in:
Tobias Diekershoff 2020-06-15 07:55:34 +02:00
parent 47b204e511
commit 1651dd418e
2 changed files with 70 additions and 10 deletions

View File

@ -0,0 +1,54 @@
# ADDON qcomment
# Copyright (C)
# This file is distributed under the same license as the Friendica qcomment addon package.
#
#
# Translators:
# Alexander An <ravnina@gmail.com>, 2020
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: 2020-04-23 14:31+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"
#: qcomment.php:51
msgid ":-)"
msgstr ":-)"
#: qcomment.php:51
msgid ":-("
msgstr ":-("
#: qcomment.php:51
msgid "lol"
msgstr "lol"
#: qcomment.php:54
msgid "Quick Comment Settings"
msgstr "Настройки быстрых комментариев"
#: qcomment.php:56
msgid ""
"Quick comments are found near comment boxes, sometimes hidden. Click them to"
" provide simple replies."
msgstr "Быстрые комментарии находятся рядом с полями комментариев, иногда они скрыты. Нажмите на них, чтобы использовать готовые ответы."
#: qcomment.php:57
msgid "Enter quick comments, one per line"
msgstr "Введите быстрые комментарии, по одному на строку"
#: qcomment.php:61
msgid "Submit"
msgstr "Добавить"
#: qcomment.php:75
msgid "Quick Comment settings saved."
msgstr "Настройки сохранены."

View File

@ -1,10 +1,16 @@
<?php
$a->strings[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";
$a->strings["Enter quick comments, one per line"] = "Введите короткие комментарии, по одному в строке:";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Quick Comment settings saved."] = "";
<?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[":-)"] = ":-)";
$a->strings[":-("] = ":-(";
$a->strings["lol"] = "lol";
$a->strings["Quick Comment Settings"] = "Настройки быстрых комментариев";
$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "Быстрые комментарии находятся рядом с полями комментариев, иногда они скрыты. Нажмите на них, чтобы использовать готовые ответы.";
$a->strings["Enter quick comments, one per line"] = "Введите быстрые комментарии, по одному на строку";
$a->strings["Submit"] = "Добавить";
$a->strings["Quick Comment settings saved."] = "Настройки сохранены.";