RU translation of blogger addon THX pztrn

This commit is contained in:
Tobias Diekershoff 2017-04-09 07:50:09 +02:00
parent ca911b3ff0
commit 34f61b1dbd
2 changed files with 72 additions and 11 deletions

View File

@ -0,0 +1,56 @@
# ADDON blogger
# Copyright (C)
# This file is distributed under the same license as the Friendica blogger addon package.
#
#
# Translators:
# Stanislav N. <pztrn@pztrn.name>, 2017
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-06-22 13:18+0200\n"
"PO-Revision-Date: 2017-04-08 17:02+0000\n"
"Last-Translator: Stanislav N. <pztrn@pztrn.name>\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"
#: blogger.php:42
msgid "Post to blogger"
msgstr "Написать в Blogger"
#: blogger.php:74 blogger.php:78
msgid "Blogger Export"
msgstr "Экспорт в Blogger"
#: blogger.php:82
msgid "Enable Blogger Post Plugin"
msgstr "Включить плагин Blogger"
#: blogger.php:87
msgid "Blogger username"
msgstr "Имя пользователя Blogger"
#: blogger.php:92
msgid "Blogger password"
msgstr "Пароль Blogger"
#: blogger.php:97
msgid "Blogger API URL"
msgstr "Blogger API URL"
#: blogger.php:102
msgid "Post to Blogger by default"
msgstr "Отправлять в Blogger по умолчанию"
#: blogger.php:108
msgid "Save Settings"
msgstr "Сохранить настройки"
#: blogger.php:178
msgid "Post from Friendica"
msgstr "Сообщение от Friendica"

View File

@ -1,11 +1,16 @@
<?php
$a->strings["Post to blogger"] = "";
$a->strings["Blogger Post Settings"] = "";
$a->strings["Enable Blogger Post Plugin"] = "";
$a->strings["Blogger username"] = "";
$a->strings["Blogger password"] = "";
$a->strings["Blogger API URL"] = "";
$a->strings["Post to Blogger by default"] = "";
$a->strings["Submit"] = "Подтвердить";
$a->strings["Post from Friendica"] = "Сообщение от Friendica";
<?php
if(! function_exists("string_plural_select_ru")) {
function string_plural_select_ru($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["Post to blogger"] = "Написать в Blogger";
$a->strings["Blogger Export"] = "Экспорт в Blogger";
$a->strings["Enable Blogger Post Plugin"] = "Включить плагин Blogger";
$a->strings["Blogger username"] = "Имя пользователя Blogger";
$a->strings["Blogger password"] = "Пароль Blogger";
$a->strings["Blogger API URL"] = "Blogger API URL";
$a->strings["Post to Blogger by default"] = "Отправлять в Blogger по умолчанию";
$a->strings["Save Settings"] = "Сохранить настройки";
$a->strings["Post from Friendica"] = "Сообщение от Friendica";