]> git.mxchange.org Git - friendica-addons.git/commitdiff
blockbot addon added CS translation THX Aditoo
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 29 Aug 2019 13:55:40 +0000 (15:55 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 29 Aug 2019 13:55:40 +0000 (15:55 +0200)
blockbot/lang/cs/messages.po [new file with mode: 0644]
blockbot/lang/cs/strings.php [new file with mode: 0644]

diff --git a/blockbot/lang/cs/messages.po b/blockbot/lang/cs/messages.po
new file mode 100644 (file)
index 0000000..5fdf404
--- /dev/null
@@ -0,0 +1,42 @@
+# ADDON blockbot
+# Copyright (C)
+# This file is distributed under the same license as the Friendica blockbot addon package.
+# 
+# 
+# Translators:
+# Aditoo, 2019
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2019-08-07 09:03+0200\n"
+"PO-Revision-Date: 2019-08-07 07:43+0000\n"
+"Last-Translator: Aditoo, 2019\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"
+
+#: blockbot.php:35
+msgid "Save Settings"
+msgstr "Uložit nastavení"
+
+#: blockbot.php:36
+msgid "Allow \"good\" crawlers"
+msgstr "Povolit „dobré“ crawlery"
+
+#: blockbot.php:37
+msgid "Block GabSocial"
+msgstr "Zablokovat GabSocial"
+
+#: blockbot.php:38
+msgid "Training mode"
+msgstr "Trénovací režim"
+
+#: blockbot.php:46
+msgid "Settings updated."
+msgstr "Nastavení aktualizována."
diff --git a/blockbot/lang/cs/strings.php b/blockbot/lang/cs/strings.php
new file mode 100644 (file)
index 0000000..d3c5a2d
--- /dev/null
@@ -0,0 +1,13 @@
+<?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["Save Settings"] = "Uložit nastavení";
+$a->strings["Allow \"good\" crawlers"] = "Povolit „dobré“ crawlery";
+$a->strings["Block GabSocial"] = "Zablokovat GabSocial";
+$a->strings["Training mode"] = "Trénovací režim";
+$a->strings["Settings updated."] = "Nastavení aktualizována.";