]> git.mxchange.org Git - friendica-addons.git/commitdiff
added FR translation for blockbot addon THX Phigger
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 8 Aug 2019 12:53:43 +0000 (14:53 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Thu, 8 Aug 2019 12:53:43 +0000 (14:53 +0200)
blockbot/lang/fr/messages.po [new file with mode: 0644]
blockbot/lang/fr/strings.php [new file with mode: 0644]

diff --git a/blockbot/lang/fr/messages.po b/blockbot/lang/fr/messages.po
new file mode 100644 (file)
index 0000000..500f0a8
--- /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:
+# Phigger Phigger <automates@lepouete.fr>, 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: Phigger Phigger <automates@lepouete.fr>, 2019\n"
+"Language-Team: French (https://www.transifex.com/Friendica/teams/12172/fr/)\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"Language: fr\n"
+"Plural-Forms: nplurals=2; plural=(n > 1);\n"
+
+#: blockbot.php:35
+msgid "Save Settings"
+msgstr "Enregistrer les Paramètres"
+
+#: blockbot.php:36
+msgid "Allow \"good\" crawlers"
+msgstr "Autoriser les \"bons\" crawlers"
+
+#: blockbot.php:37
+msgid "Block GabSocial"
+msgstr "Bloquer GabSocial"
+
+#: blockbot.php:38
+msgid "Training mode"
+msgstr "Mode d'entraînement"
+
+#: blockbot.php:46
+msgid "Settings updated."
+msgstr "Paramètres mis à jour."
diff --git a/blockbot/lang/fr/strings.php b/blockbot/lang/fr/strings.php
new file mode 100644 (file)
index 0000000..1597735
--- /dev/null
@@ -0,0 +1,13 @@
+<?php
+
+if(! function_exists("string_plural_select_fr")) {
+function string_plural_select_fr($n){
+       $n = intval($n);
+       return ($n > 1);;
+}}
+;
+$a->strings["Save Settings"] = "Enregistrer les Paramètres";
+$a->strings["Allow \"good\" crawlers"] = "Autoriser les \"bons\" crawlers";
+$a->strings["Block GabSocial"] = "Bloquer GabSocial";
+$a->strings["Training mode"] = "Mode d'entraînement";
+$a->strings["Settings updated."] = "Paramètres mis à jour.";