FR translation of various addons updated

This commit is contained in:
Tobias Diekershoff 2022-08-19 19:37:09 +02:00
parent 0ff332bd11
commit 4487b2a923
80 changed files with 963 additions and 971 deletions

View file

@ -5,46 +5,43 @@
#
# Translators:
# bob lebonche <lebonche@tutanota.com>, 2021
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
# ea1cd8241cb389ffb6f92bc6891eff5d_dc12308 <70dced5587d47e18d88f9298024d96f8_93383>, 2015
# StefOfficiel <pichard.stephane@free.fr>, 2015
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
"PO-Revision-Date: 2021-03-22 09:11+0000\n"
"Last-Translator: bob lebonche <lebonche@tutanota.com>\n"
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
"PO-Revision-Date: 2014-06-22 11:41+0000\n"
"Last-Translator: Hypolite Petovan <hypolite@mrpetovan.com>, 2022\n"
"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/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"
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
#: dwpost.php:41
#: dwpost.php:43
msgid "Post to Dreamwidth"
msgstr "Publier sur Dreamwidth"
#: dwpost.php:72 dwpost.php:76
msgid "Dreamwidth Export"
msgstr "Export Dreamwidth"
#: dwpost.php:63
msgid "Enable Dreamwidth Post Addon"
msgstr "Activer l'extension Dreamwidth"
#: dwpost.php:80
msgid "Enable dreamwidth Post Addon"
msgstr "Activer l'application complémentaire de publication Dreamwidth."
#: dwpost.php:85
msgid "dreamwidth username"
#: dwpost.php:64
msgid "Dreamwidth username"
msgstr "Nom d'utilisateur Dreamwidth"
#: dwpost.php:90
msgid "dreamwidth password"
msgstr "Mot de passe dreamwidth"
#: dwpost.php:65
msgid "Dreamwidth password"
msgstr "Mot de passe Dreamwidth"
#: dwpost.php:95
msgid "Post to dreamwidth by default"
msgstr "Poster sur Dreamwidth par défaut"
#: dwpost.php:66
msgid "Post to Dreamwidth by default"
msgstr "Publier sur Dreamwidth par défaut"
#: dwpost.php:100
msgid "Save Settings"
msgstr "Sauvegarder les paramètres"
#: dwpost.php:71
msgid "Dreamwidth Export"
msgstr "Export Dreamwidth"

View file

@ -3,12 +3,11 @@
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
$n = intval($n);
return intval($n > 1);
if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$a->strings['Post to Dreamwidth'] = 'Publier sur Dreamwidth';
$a->strings['Enable Dreamwidth Post Addon'] = 'Activer l\'extension Dreamwidth';
$a->strings['Dreamwidth username'] = 'Nom d\'utilisateur Dreamwidth';
$a->strings['Dreamwidth password'] = 'Mot de passe Dreamwidth';
$a->strings['Post to Dreamwidth by default'] = 'Publier sur Dreamwidth par défaut';
$a->strings['Dreamwidth Export'] = 'Export Dreamwidth';
$a->strings['Enable dreamwidth Post Addon'] = 'Activer l\'application complémentaire de publication Dreamwidth.';
$a->strings['dreamwidth username'] = 'Nom d\'utilisateur Dreamwidth';
$a->strings['dreamwidth password'] = 'Mot de passe dreamwidth';
$a->strings['Post to dreamwidth by default'] = 'Poster sur Dreamwidth par défaut';
$a->strings['Save Settings'] = 'Sauvegarder les paramètres';