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

diff --git a/showmore/lang/ru/messages.po b/showmore/lang/ru/messages.po
new file mode 100644 (file)
index 0000000..2b4c741
--- /dev/null
@@ -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 "показать ещё"
index 0111afedf2115a439f8f4cfd1178838f5e4ed294..a643b0289e0ff0e0eade105cfea19e7bb0323b20 100644 (file)
@@ -1,8 +1,14 @@
-<?php\r
-\r
-$a->strings["\"Show more\" Settings"] = "";\r
-$a->strings["Enable Show More"] = "Включить Показать больше";\r
-$a->strings["Cutting posts after how much characters"] = "Обрезание сообщения после превывения числа символов";\r
-$a->strings["Submit"] = "Подтвердить";\r
-$a->strings["Show More Settings saved."] = "";\r
-$a->strings["show more"] = "показать больше";\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["\"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"] = "показать ещё";