]> git.mxchange.org Git - friendica-addons.git/commitdiff
IT translation of blockbot addon added THX silkevicious
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 1 Sep 2020 12:40:02 +0000 (14:40 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Tue, 1 Sep 2020 12:40:02 +0000 (14:40 +0200)
blockbot/lang/it/messages.po [new file with mode: 0644]
blockbot/lang/it/strings.php [new file with mode: 0644]

diff --git a/blockbot/lang/it/messages.po b/blockbot/lang/it/messages.po
new file mode 100644 (file)
index 0000000..06db442
--- /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:
+# Sylke Vicious <silkevicious@gmail.com>, 2020
+# 
+#, 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: Sylke Vicious <silkevicious@gmail.com>, 2020\n"
+"Language-Team: Italian (https://www.transifex.com/Friendica/teams/12172/it/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: it\n"
+"Plural-Forms: nplurals=2; plural=(n != 1);\n"
+
+#: blockbot.php:35
+msgid "Save Settings"
+msgstr "Salva Impostazioni"
+
+#: blockbot.php:36
+msgid "Allow \"good\" crawlers"
+msgstr "Permetti crawler \"buoni\""
+
+#: blockbot.php:37
+msgid "Block GabSocial"
+msgstr "Blocca GabSocial"
+
+#: blockbot.php:38
+msgid "Training mode"
+msgstr "Modalità addestramento"
+
+#: blockbot.php:46
+msgid "Settings updated."
+msgstr "Impostazioni aggiornate."
diff --git a/blockbot/lang/it/strings.php b/blockbot/lang/it/strings.php
new file mode 100644 (file)
index 0000000..64de6d4
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+if(! function_exists("string_plural_select_it")) {
+function string_plural_select_it($n){
+       $n = intval($n);
+       return ($n != 1);;
+}}
+;
+$a->strings["Save Settings"] = "Salva Impostazioni";
+$a->strings["Allow \"good\" crawlers"] = "Permetti crawler \"buoni\"";
+$a->strings["Block GabSocial"] = "Blocca GabSocial";
+$a->strings["Training mode"] = "Modalità addestramento";
+$a->strings["Settings updated."] = "Impostazioni aggiornate.";