]> git.mxchange.org Git - friendica-addons.git/commitdiff
RU translation of curweather addon THX Alexander An
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 31 May 2022 05:07:44 +0000 (07:07 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 31 May 2022 05:07:44 +0000 (07:07 +0200)
curweather/lang/ru/messages.po [new file with mode: 0644]
curweather/lang/ru/strings.php

diff --git a/curweather/lang/ru/messages.po b/curweather/lang/ru/messages.po
new file mode 100644 (file)
index 0000000..bb3945d
--- /dev/null
@@ -0,0 +1,124 @@
+# ADDON curweather
+# Copyright (C)
+# This file is distributed under the same license as the Friendica curweather addon package.
+# 
+# 
+# Translators:
+# Alexander An <ravnina@gmail.com>, 2022
+msgid ""
+msgstr ""
+"Project-Id-Version: friendica\n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2021-11-21 19:14-0500\n"
+"PO-Revision-Date: 2014-06-22 11:34+0000\n"
+"Last-Translator: Alexander An <ravnina@gmail.com>, 2022\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"
+
+#: curweather.php:47
+msgid "Error fetching weather data. Error was: "
+msgstr "Ошибка получения данных о погоде. Ошибка:"
+
+#: curweather.php:130
+msgid "Current Weather"
+msgstr "Погода сейчас"
+
+#: curweather.php:137
+msgid "Relative Humidity"
+msgstr "Относительная влажность"
+
+#: curweather.php:138
+msgid "Pressure"
+msgstr "Давление"
+
+#: curweather.php:139
+msgid "Wind"
+msgstr "Ветер"
+
+#: curweather.php:140
+msgid "Last Updated"
+msgstr "Обновлено"
+
+#: curweather.php:141
+msgid "Data by"
+msgstr "Данные из"
+
+#: curweather.php:142
+msgid "Show on map"
+msgstr "Показать на карте"
+
+#: curweather.php:147
+msgid "There was a problem accessing the weather data. But have a look"
+msgstr "Не получилось получить данные о погоде. Но вы можете посмотреть"
+
+#: curweather.php:149
+msgid "at OpenWeatherMap"
+msgstr "OpenWeatherMap"
+
+#: curweather.php:178
+msgid "No APPID found, please contact your admin to obtain one."
+msgstr "Не найден APPID, свяжитесь с вашим администратором, чтобы получить его."
+
+#: curweather.php:188
+msgid "Enter either the name of your location or the zip code."
+msgstr "Введите ваше местоположение или индекс."
+
+#: curweather.php:189
+msgid "Your Location"
+msgstr "Ваше местонахождение"
+
+#: curweather.php:189
+msgid ""
+"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
+"<em>14476,DE</em>."
+msgstr "Ваше местоположение (имя или индекс), например <em>Berlin,DE</em> или <em>14476,DE</em>."
+
+#: curweather.php:190
+msgid "Units"
+msgstr "Единицы"
+
+#: curweather.php:190
+msgid "select if the temperature should be displayed in &deg;C or &deg;F"
+msgstr "выберите как должна отображаться температура - в &deg;C или &deg;F"
+
+#: curweather.php:191
+msgid "Show weather data"
+msgstr "Показать данные о погоде"
+
+#: curweather.php:196
+msgid "Current Weather Settings"
+msgstr "Текущие настройки"
+
+#: curweather.php:227
+msgid "Save Settings"
+msgstr "Сохранить настройки"
+
+#: curweather.php:230
+msgid "Caching Interval"
+msgstr "Интервал кэширования"
+
+#: curweather.php:232
+msgid ""
+"For how long should the weather data be cached? Choose according your "
+"OpenWeatherMap account type."
+msgstr "Как долго кэшировать данные о погоде? Выберите в соответствии с типом вашей учётной записи OpenWeatherMap."
+
+#: curweather.php:233
+msgid "no cache"
+msgstr "не кэшировать"
+
+#: curweather.php:234 curweather.php:235 curweather.php:236 curweather.php:237
+msgid "minutes"
+msgstr "мин."
+
+#: curweather.php:240
+msgid "Your APPID"
+msgstr "Ваш APPID"
+
+#: curweather.php:240
+msgid "Your API key provided by OpenWeatherMap"
+msgstr "Ваш ключ API, полученный у OpenWeatherMap"
index ab5e224611275ac4619246aeaf0719f86af37c53..9926cdce50eb34c7b775d2ee8362a0f72f0325fc 100644 (file)
@@ -1,3 +1,32 @@
-<?php\r
-\r
-$a->strings["Submit"] = "Подтвердить";\r
+<?php
+
+if(! function_exists("string_plural_select_ru")) {
+function string_plural_select_ru($n){
+       $n = intval($n);
+       if ($n%10==1 && $n%100!=11) { return 0; } else if ($n%10>=2 && $n%10<=4 && ($n%100<12 || $n%100>14)) { return 1; } else if ($n%10==0 || ($n%10>=5 && $n%10<=9) || ($n%100>=11 && $n%100<=14)) { return 2; } else  { return 3; }
+}}
+$a->strings['Error fetching weather data. Error was: '] = 'Ошибка получения данных о погоде. Ошибка:';
+$a->strings['Current Weather'] = 'Погода сейчас';
+$a->strings['Relative Humidity'] = 'Относительная влажность';
+$a->strings['Pressure'] = 'Давление';
+$a->strings['Wind'] = 'Ветер';
+$a->strings['Last Updated'] = 'Обновлено';
+$a->strings['Data by'] = 'Данные из';
+$a->strings['Show on map'] = 'Показать на карте';
+$a->strings['There was a problem accessing the weather data. But have a look'] = 'Не получилось получить данные о погоде. Но вы можете посмотреть';
+$a->strings['at OpenWeatherMap'] = 'OpenWeatherMap';
+$a->strings['No APPID found, please contact your admin to obtain one.'] = 'Не найден APPID, свяжитесь с вашим администратором, чтобы получить его.';
+$a->strings['Enter either the name of your location or the zip code.'] = 'Введите ваше местоположение или индекс.';
+$a->strings['Your Location'] = 'Ваше местонахождение';
+$a->strings['Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>.'] = 'Ваше местоположение (имя или индекс), например <em>Berlin,DE</em> или <em>14476,DE</em>.';
+$a->strings['Units'] = 'Единицы';
+$a->strings['select if the temperature should be displayed in &deg;C or &deg;F'] = 'выберите как должна отображаться температура - в &deg;C или &deg;F';
+$a->strings['Show weather data'] = 'Показать данные о погоде';
+$a->strings['Current Weather Settings'] = 'Текущие настройки';
+$a->strings['Save Settings'] = 'Сохранить настройки';
+$a->strings['Caching Interval'] = 'Интервал кэширования';
+$a->strings['For how long should the weather data be cached? Choose according your OpenWeatherMap account type.'] = 'Как долго кэшировать данные о погоде? Выберите в соответствии с типом вашей учётной записи OpenWeatherMap.';
+$a->strings['no cache'] = 'не кэшировать';
+$a->strings['minutes'] = 'мин.';
+$a->strings['Your APPID'] = 'Ваш APPID';
+$a->strings['Your API key provided by OpenWeatherMap'] = 'Ваш ключ API, полученный у OpenWeatherMap';