markdown addon FR translation updated THX kalon33

This commit is contained in:
Tobias Diekershoff 2022-05-25 08:36:54 +02:00
parent 91f5ba9eab
commit 348ca80292
No known key found for this signature in database
GPG Key ID: 25FE376FF17694A1
2 changed files with 46 additions and 0 deletions

View File

@ -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"

View File

@ -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';