]> git.mxchange.org Git - friendica-addons.git/commitdiff
added DE translation to the notifyall addon
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 14 Aug 2016 19:42:17 +0000 (21:42 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 14 Aug 2016 19:42:17 +0000 (21:42 +0200)
notifyall/lang/de/messages.po [new file with mode: 0644]
notifyall/lang/de/strings.php [new file with mode: 0644]

diff --git a/notifyall/lang/de/messages.po b/notifyall/lang/de/messages.po
new file mode 100644 (file)
index 0000000..af0034a
--- /dev/null
@@ -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: Tobias Diekershoff <tobias.diekershoff@gmx.net>, 2016\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"
+
+#: notifyall.php:26
+msgid "Send email to all members"
+msgstr "Sende eine E-Mail an alle Nutzer der Seite"
+
+#: notifyall.php:42
+#, php-format
+msgid "%s Administrator"
+msgstr "der Administrator von %s"
+
+#: notifyall.php:44
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrator"
+
+#: notifyall.php:60
+msgid "No recipients found."
+msgstr "Keine Empfänger gefunden"
+
+#: notifyall.php:78
+msgid "Emails sent"
+msgstr "E-Mails gesendet."
+
+#: notifyall.php:86
+msgid "Send email to all members of this Friendica instance."
+msgstr "Sende eine E-Mail an alle Nutzer dieser Friendica Instanz"
+
+#: notifyall.php:91
+msgid "Message subject"
+msgstr "Betreff der Nachricht"
+
+#: notifyall.php:92
+msgid "Test mode (only send to administrator)"
+msgstr "Test Modus (E-Mail nur an den Administrator senden)"
+
+#: notifyall.php:93
+msgid "Submit"
+msgstr "Senden"
diff --git a/notifyall/lang/de/strings.php b/notifyall/lang/de/strings.php
new file mode 100644 (file)
index 0000000..9c92b42
--- /dev/null
@@ -0,0 +1,16 @@
+<?php
+
+if(! function_exists("string_plural_select_de")) {
+function string_plural_select_de($n){
+       return ($n != 1);;
+}}
+;
+$a->strings["Send email to all members"] = "Sende eine E-Mail an alle Nutzer der Seite";
+$a->strings["%s Administrator"] = "der Administrator von %s";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrator";
+$a->strings["No recipients found."] = "Keine Empfänger gefunden";
+$a->strings["Emails sent"] = "E-Mails gesendet.";
+$a->strings["Send email to all members of this Friendica instance."] = "Sende eine E-Mail an alle Nutzer dieser Friendica Instanz";
+$a->strings["Message subject"] = "Betreff der Nachricht";
+$a->strings["Test mode (only send to administrator)"] = "Test Modus (E-Mail nur an den Administrator senden)";
+$a->strings["Submit"] = "Senden";