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,57 @@
# ADDON notifyall
# Copyright (C)
# This file is distributed under the same license as the Friendica notifyall addon package.
#
#
#, fuzzy
msgid ""
msgstr ""
"Project-Id-Version: \n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-14 16:41+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: Kris, 2018\n"
"Language-Team: Finnish (Finland) (https://www.transifex.com/Friendica/teams/12172/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"
#: notifyall.php:26
msgid "Send email to all members"
msgstr ""
#: notifyall.php:42
#, php-format
msgid "%s Administrator"
msgstr ""
#: notifyall.php:44
#, php-format
msgid "%1$s, %2$s Administrator"
msgstr ""
#: notifyall.php:60
msgid "No recipients found."
msgstr ""
#: notifyall.php:78
msgid "Emails sent"
msgstr "Sähköpostit lähetetty"
#: notifyall.php:86
msgid "Send email to all members of this Friendica instance."
msgstr ""
#: notifyall.php:91
msgid "Message subject"
msgstr "Viestin aihe"
#: notifyall.php:92
msgid "Test mode (only send to administrator)"
msgstr ""
#: notifyall.php:93
msgid "Submit"
msgstr "Lähetä"

View file

@ -0,0 +1,16 @@
<?php
if(! function_exists("string_plural_select_fi_fi")) {
function string_plural_select_fi_fi($n){
return ($n != 1);;
}}
;
$a->strings["Send email to all members"] = "";
$a->strings["%s Administrator"] = "";
$a->strings["%1\$s, %2\$s Administrator"] = "";
$a->strings["No recipients found."] = "";
$a->strings["Emails sent"] = "Sähköpostit lähetetty";
$a->strings["Send email to all members of this Friendica instance."] = "";
$a->strings["Message subject"] = "Viestin aihe";
$a->strings["Test mode (only send to administrator)"] = "";
$a->strings["Submit"] = "Lähetä";