]> git.mxchange.org Git - friendica-addons.git/commitdiff
added EN GB translation of blockbot addon THX AndyH3
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 27 Sep 2019 06:50:11 +0000 (08:50 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Fri, 27 Sep 2019 06:50:11 +0000 (08:50 +0200)
blockbot/lang/en-gb/messages.po [new file with mode: 0644]
blockbot/lang/en-gb/strings.php [new file with mode: 0644]

diff --git a/blockbot/lang/en-gb/messages.po b/blockbot/lang/en-gb/messages.po
new file mode 100644 (file)
index 0000000..b88c112
--- /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:
+# Andy H3 <andy@hubup.pro>, 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: Andy H3 <andy@hubup.pro>, 2019\n"
+"Language-Team: English (United Kingdom) (https://www.transifex.com/Friendica/teams/12172/en_GB/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: en_GB\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: blockbot.php:35
+msgid "Save Settings"
+msgstr "Save Settings"
+
+#: blockbot.php:36
+msgid "Allow \"good\" crawlers"
+msgstr "Allow \"good\" crawlers"
+
+#: blockbot.php:37
+msgid "Block GabSocial"
+msgstr "Block GabSocial"
+
+#: blockbot.php:38
+msgid "Training mode"
+msgstr "Training mode"
+
+#: blockbot.php:46
+msgid "Settings updated."
+msgstr "Settings updated."
diff --git a/blockbot/lang/en-gb/strings.php b/blockbot/lang/en-gb/strings.php
new file mode 100644 (file)
index 0000000..f5299bf
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+if(! function_exists("string_plural_select_en_gb")) {
+function string_plural_select_en_gb($n){
+       $n = intval($n);
+       return ($n != 1);;
+}}
+;
+$a->strings["Save Settings"] = "Save Settings";
+$a->strings["Allow \"good\" crawlers"] = "Allow \"good\" crawlers";
+$a->strings["Block GabSocial"] = "Block GabSocial";
+$a->strings["Training mode"] = "Training mode";
+$a->strings["Settings updated."] = "Settings updated.";