]> git.mxchange.org Git - friendica-addons.git/commitdiff
markdown addon FR translation updated THX kalon33
authorTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 25 May 2022 06:36:54 +0000 (08:36 +0200)
committerTobias Diekershoff <tobias.diekershoff@gmx.net>
Wed, 25 May 2022 06:36:54 +0000 (08:36 +0200)
markdown/lang/fr/messages.po [new file with mode: 0644]
markdown/lang/fr/strings.php [new file with mode: 0644]

diff --git a/markdown/lang/fr/messages.po b/markdown/lang/fr/messages.po
new file mode 100644 (file)
index 0000000..6f42f19
--- /dev/null
@@ -0,0 +1,36 @@
+# ADDON markdown
+# Copyright (C)
+# This file is distributed under the same license as the Friendica markdown addon package.
+# 
+# 
+# Translators:
+# Nicolas Derive, 2022
+# 
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: \n"
+"Report-Msgid-Bugs-To: \n"
+"POT-Creation-Date: 2021-11-21 19:15-0500\n"
+"PO-Revision-Date: 2019-12-27 06:41+0000\n"
+"Last-Translator: Nicolas Derive, 2022\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=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
+
+#: markdown.php:30
+msgid "Enable Markdown parsing"
+msgstr "Activer l'interprétation Markdown"
+
+#: markdown.php:30
+msgid "If enabled, adds Markdown support to the Compose Post form."
+msgstr ""
+"Si activé, ajoute le support de Markdown au formulaire de création d'une "
+"publication."
+
+#: markdown.php:35
+msgid "Markdown Settings"
+msgstr "Paramètres de Markdown"
diff --git a/markdown/lang/fr/strings.php b/markdown/lang/fr/strings.php
new file mode 100644 (file)
index 0000000..a5d2cdb
--- /dev/null
@@ -0,0 +1,10 @@
+<?php
+
+if(! function_exists("string_plural_select_fr")) {
+function string_plural_select_fr($n){
+       $n = intval($n);
+       if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
+}}
+$a->strings['Enable Markdown parsing'] = 'Activer l\'interprétation Markdown';
+$a->strings['If enabled, adds Markdown support to the Compose Post form.'] = 'Si activé, ajoute le support de Markdown au formulaire de création d\'une publication.';
+$a->strings['Markdown Settings'] = 'Paramètres de Markdown';