added DE translation of IFTTT
parent
25a7ca76f5
commit
e064d2da84
|
@ -0,0 +1,55 @@
|
||||||
|
# ADDON ifttt
|
||||||
|
# Copyright (C)
|
||||||
|
# This file is distributed under the same license as the Friendica ifttt addon package.
|
||||||
|
#
|
||||||
|
#
|
||||||
|
#, fuzzy
|
||||||
|
msgid ""
|
||||||
|
msgstr ""
|
||||||
|
"Project-Id-Version: \n"
|
||||||
|
"Report-Msgid-Bugs-To: \n"
|
||||||
|
"POT-Creation-Date: 2017-11-27 09:30+0100\n"
|
||||||
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
|
"Last-Translator: Andreas H. <webmaster@a-zwenkau.de>, 2017\n"
|
||||||
|
"Language-Team: German (https://www.transifex.com/Friendica/teams/12172/de/)\n"
|
||||||
|
"MIME-Version: 1.0\n"
|
||||||
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
|
"Language: de\n"
|
||||||
|
"Plural-Forms: nplurals=2; plural=(n != 1);\n"
|
||||||
|
|
||||||
|
#: ifttt.php:53 ifttt.php:57
|
||||||
|
msgid "IFTTT Mirror"
|
||||||
|
msgstr "IFTTT Spiegel"
|
||||||
|
|
||||||
|
#: ifttt.php:61
|
||||||
|
msgid ""
|
||||||
|
"Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create "
|
||||||
|
"three Facebook recipes that are connected with <a "
|
||||||
|
"href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then "
|
||||||
|
"Maker\") with the following parameters:"
|
||||||
|
msgstr ""
|
||||||
|
"Lege ein Konto bei <a href=\"http://www.ifttt.com\"> IFTTT an</a>. Gebe drei"
|
||||||
|
" Facebook Empfänger ein, die mit <a href=\"https://ifttt.com/maker\">Maker "
|
||||||
|
"</a> verbunden sind (in der Form \"wenn Facebook dann Maker\"), mit den "
|
||||||
|
"folgenden Parametern:"
|
||||||
|
|
||||||
|
#: ifttt.php:68
|
||||||
|
msgid "Body for \"new status message\""
|
||||||
|
msgstr "Body für \"Neue Status Meldung\""
|
||||||
|
|
||||||
|
#: ifttt.php:70
|
||||||
|
msgid "Body for \"new photo upload\""
|
||||||
|
msgstr "Body für \"Neues Foto hochgeladen\""
|
||||||
|
|
||||||
|
#: ifttt.php:72
|
||||||
|
msgid "Body for \"new link post\""
|
||||||
|
msgstr "Body für \"Neue Nachricht\""
|
||||||
|
|
||||||
|
#: ifttt.php:77
|
||||||
|
msgid "Generate new key"
|
||||||
|
msgstr "Generiere neuen Schlüssel"
|
||||||
|
|
||||||
|
#: ifttt.php:81
|
||||||
|
msgid "Save Settings"
|
||||||
|
msgstr "Speichere Einstellungen"
|
|
@ -0,0 +1,14 @@
|
||||||
|
<?php
|
||||||
|
|
||||||
|
if(! function_exists("string_plural_select_de")) {
|
||||||
|
function string_plural_select_de($n){
|
||||||
|
return ($n != 1);;
|
||||||
|
}}
|
||||||
|
;
|
||||||
|
$a->strings["IFTTT Mirror"] = "IFTTT Spiegel";
|
||||||
|
$a->strings["Create an account at <a href=\"http://www.ifttt.com\">IFTTT</a>. Create three Facebook recipes that are connected with <a href=\"https://ifttt.com/maker\">Maker</a> (In the form \"if Facebook then Maker\") with the following parameters:"] = "Lege ein Konto bei <a href=\"http://www.ifttt.com\"> IFTTT an</a>. Gebe drei Facebook Empfänger ein, die mit <a href=\"https://ifttt.com/maker\">Maker </a> verbunden sind (in der Form \"wenn Facebook dann Maker\"), mit den folgenden Parametern:";
|
||||||
|
$a->strings["Body for \"new status message\""] = "Body für \"Neue Status Meldung\"";
|
||||||
|
$a->strings["Body for \"new photo upload\""] = "Body für \"Neues Foto hochgeladen\"";
|
||||||
|
$a->strings["Body for \"new link post\""] = "Body für \"Neue Nachricht\"";
|
||||||
|
$a->strings["Generate new key"] = "Generiere neuen Schlüssel";
|
||||||
|
$a->strings["Save Settings"] = "Speichere Einstellungen";
|
Loading…
Reference in New Issue