]> git.mxchange.org Git - friendica-addons.git/commitdiff
qcomment RU translation update THX Alexander An
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 15 Jun 2020 05:55:34 +0000 (07:55 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Mon, 15 Jun 2020 05:55:34 +0000 (07:55 +0200)
qcomment/lang/ru/messages.po [new file with mode: 0644]
qcomment/lang/ru/strings.php

diff --git a/qcomment/lang/ru/messages.po b/qcomment/lang/ru/messages.po
new file mode 100644 (file)
index 0000000..53e086d
--- /dev/null
@@ -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 "Настройки сохранены."
index 5ccbcd7d66bb0e16139f02e190fce946e6b2894d..5bc45e559bc1fdc2713e3cc316bd6ded1575f53f 100644 (file)
@@ -1,10 +1,16 @@
-<?php\r
-\r
-$a->strings[":-)"] = ":-)";\r
-$a->strings[":-("] = ":-(";\r
-$a->strings["lol"] = "lol";\r
-$a->strings["Quick Comment Settings"] = "";\r
-$a->strings["Quick comments are found near comment boxes, sometimes hidden. Click them to provide simple replies."] = "";\r
-$a->strings["Enter quick comments, one per line"] = "Введите короткие комментарии, по одному в строке:";\r
-$a->strings["Submit"] = "Подтвердить";\r
-$a->strings["Quick Comment settings saved."] = "";\r
+<?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."] = "Настройки сохранены.";