added FI translations to many addons THX Kris

This commit is contained in:
Tobias Diekershoff 2018-04-06 13:58:38 +02:00
parent c4bd245a1a
commit 85815a8810
118 changed files with 5110 additions and 0 deletions

View file

@ -0,0 +1,132 @@
# ADDON curweather
# Copyright (C)
# This file is distributed under the same license as the Friendica curweather addon package.
#
#
# Translators:
# Kris, 2018
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-09-25 17:17+0200\n"
"PO-Revision-Date: 2018-04-03 18:27+0000\n"
"Last-Translator: Kris\n"
"Language-Team: Finnish (Finland) (http://www.transifex.com/Friendica/friendica/language/fi_FI/)\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
"Language: fi_FI\n"
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
#: curweather.php:31
msgid "Error fetching weather data.\\nError was: "
msgstr ""
#: curweather.php:111 curweather.php:172
msgid "Current Weather"
msgstr ""
#: curweather.php:118
msgid "Relative Humidity"
msgstr ""
#: curweather.php:119
msgid "Pressure"
msgstr ""
#: curweather.php:120
msgid "Wind"
msgstr "Tuuli"
#: curweather.php:121
msgid "Last Updated"
msgstr ""
#: curweather.php:122
msgid "Data by"
msgstr ""
#: curweather.php:123
msgid "Show on map"
msgstr "Näytä kartalla"
#: curweather.php:128
msgid "There was a problem accessing the weather data. But have a look"
msgstr ""
#: curweather.php:130
msgid "at OpenWeatherMap"
msgstr ""
#: curweather.php:146
msgid "Current Weather settings updated."
msgstr ""
#: curweather.php:161
msgid "No APPID found, please contact your admin to obtain one."
msgstr ""
#: curweather.php:171 curweather.php:200
msgid "Save Settings"
msgstr "Tallenna asetukset"
#: curweather.php:172
msgid "Settings"
msgstr "Asetukset"
#: curweather.php:174
msgid "Enter either the name of your location or the zip code."
msgstr ""
#: curweather.php:175
msgid "Your Location"
msgstr "Sijaintisi"
#: curweather.php:175
msgid ""
"Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or "
"<em>14476,DE</em>."
msgstr ""
#: curweather.php:176
msgid "Units"
msgstr ""
#: curweather.php:176
msgid "select if the temperature should be displayed in &deg;C or &deg;F"
msgstr ""
#: curweather.php:177
msgid "Show weather data"
msgstr ""
#: curweather.php:190
msgid "Curweather settings saved."
msgstr ""
#: curweather.php:201
msgid "Caching Interval"
msgstr ""
#: curweather.php:201
msgid ""
"For how long should the weather data be cached? Choose according your "
"OpenWeatherMap account type."
msgstr ""
#: curweather.php:201
msgid "no cache"
msgstr ""
#: curweather.php:201
msgid "minutes"
msgstr ""
#: curweather.php:202
msgid "Your APPID"
msgstr ""
#: curweather.php:202
msgid "Your API key provided by OpenWeatherMap"
msgstr ""

View file

@ -0,0 +1,34 @@
<?php
if(! function_exists("string_plural_select_fi_fi")) {
function string_plural_select_fi_fi($n){
return ($n != 1);;
}}
;
$a->strings["Error fetching weather data.\\nError was: "] = "";
$a->strings["Current Weather"] = "";
$a->strings["Relative Humidity"] = "";
$a->strings["Pressure"] = "";
$a->strings["Wind"] = "Tuuli";
$a->strings["Last Updated"] = "";
$a->strings["Data by"] = "";
$a->strings["Show on map"] = "Näytä kartalla";
$a->strings["There was a problem accessing the weather data. But have a look"] = "";
$a->strings["at OpenWeatherMap"] = "";
$a->strings["Current Weather settings updated."] = "";
$a->strings["No APPID found, please contact your admin to obtain one."] = "";
$a->strings["Save Settings"] = "Tallenna asetukset";
$a->strings["Settings"] = "Asetukset";
$a->strings["Enter either the name of your location or the zip code."] = "";
$a->strings["Your Location"] = "Sijaintisi";
$a->strings["Identifier of your location (name or zip code), e.g. <em>Berlin,DE</em> or <em>14476,DE</em>."] = "";
$a->strings["Units"] = "";
$a->strings["select if the temperature should be displayed in &deg;C or &deg;F"] = "";
$a->strings["Show weather data"] = "";
$a->strings["Curweather settings saved."] = "";
$a->strings["Caching Interval"] = "";
$a->strings["For how long should the weather data be cached? Choose according your OpenWeatherMap account type."] = "";
$a->strings["no cache"] = "";
$a->strings["minutes"] = "";
$a->strings["Your APPID"] = "";
$a->strings["Your API key provided by OpenWeatherMap"] = "";