added CS translation of the notifyall addon THX Aditoo
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 10 Jun 2018 06:09:52 +0000 (08:09 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Sun, 10 Jun 2018 06:09:52 +0000 (08:09 +0200)
notifyall/lang/cs/messages.po [new file with mode: 0644]
notifyall/lang/cs/strings.php [new file with mode: 0644]

diff --git a/notifyall/lang/cs/messages.po b/notifyall/lang/cs/messages.po
new file mode 100644 (file)
index 0000000..f9c3219
--- /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: Lorem Ipsum <aditoo@seznam.cz>, 2018\n"
+"Language-Team: Czech (https://www.transifex.com/Friendica/teams/12172/cs/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: cs\n"
+"Plural-Forms: nplurals=4; plural=(n == 1 && n % 1 == 0) ? 0 : (n >= 2 && n <= 4 && n % 1 == 0) ? 1: (n % 1 != 0 ) ? 2 : 3;\n"
+
+#: notifyall.php:26
+msgid "Send email to all members"
+msgstr "Odeslat e-mail všem členům"
+
+#: notifyall.php:42
+#, php-format
+msgid "%s Administrator"
+msgstr "%s Administrátor"
+
+#: notifyall.php:44
+#, php-format
+msgid "%1$s, %2$s Administrator"
+msgstr "%1$s, %2$s Administrátor"
+
+#: notifyall.php:60
+msgid "No recipients found."
+msgstr "Nenalezeni žádní příjemci."
+
+#: notifyall.php:78
+msgid "Emails sent"
+msgstr "E-maily odeslány"
+
+#: notifyall.php:86
+msgid "Send email to all members of this Friendica instance."
+msgstr "Odeslat e-mail všem členům této instance Friendica."
+
+#: notifyall.php:91
+msgid "Message subject"
+msgstr "Předmět zprávy"
+
+#: notifyall.php:92
+msgid "Test mode (only send to administrator)"
+msgstr "Testovací režim (odeslat pouze administrátorovi)"
+
+#: notifyall.php:93
+msgid "Submit"
+msgstr "Odeslat"
diff --git a/notifyall/lang/cs/strings.php b/notifyall/lang/cs/strings.php
new file mode 100644 (file)
index 0000000..e01528c
--- /dev/null
@@ -0,0 +1,17 @@
+<?php
+
+if(! function_exists("string_plural_select_cs")) {
+function string_plural_select_cs($n){
+       $n = intval($n);
+       return ($n == 1 && $n % 1 == 0) ? 0 : ($n >= 2 && $n <= 4 && $n % 1 == 0) ? 1: ($n % 1 != 0 ) ? 2 : 3;;
+}}
+;
+$a->strings["Send email to all members"] = "Odeslat e-mail všem členům";
+$a->strings["%s Administrator"] = "%s Administrátor";
+$a->strings["%1\$s, %2\$s Administrator"] = "%1\$s, %2\$s Administrátor";
+$a->strings["No recipients found."] = "Nenalezeni žádní příjemci.";
+$a->strings["Emails sent"] = "E-maily odeslány";
+$a->strings["Send email to all members of this Friendica instance."] = "Odeslat e-mail všem členům této instance Friendica.";
+$a->strings["Message subject"] = "Předmět zprávy";
+$a->strings["Test mode (only send to administrator)"] = "Testovací režim (odeslat pouze administrátorovi)";
+$a->strings["Submit"] = "Odeslat";