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

@ -6,53 +6,56 @@
# Translators:
# bob lebonche <lebonche@tutanota.com>, 2021
# ButterflyOfFire, 2020
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
# 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:18+0000\n"
"Last-Translator: bob lebonche <lebonche@tutanota.com>\n"
"POT-Creation-Date: 2021-03-23 23:53-0400\n"
"PO-Revision-Date: 2014-06-23 08:46+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"
#: js_upload.php:33
#: js_upload.php:34
msgid "Select files for upload"
msgstr "Sélectionner les fichiers à télécharger"
#: js_upload.php:34
#: js_upload.php:35
msgid "Drop files here to upload"
msgstr "Glisser les fichiers ici pour uploader"
#: js_upload.php:35
#: js_upload.php:36
msgid "Cancel"
msgstr "Annuler"
#: js_upload.php:36
#: js_upload.php:37
msgid "Failed"
msgstr "Echec"
#: js_upload.php:214
#: js_upload.php:215
msgid "No files were uploaded."
msgstr "Aucun fichier téléchargé"
#: js_upload.php:220
#: js_upload.php:221
msgid "Uploaded file is empty"
msgstr "Le fichier téléchargé est vide"
#: js_upload.php:232
msgid "Image exceeds size limit of "
msgstr "L'image dépasse la taille limite de "
#: js_upload.php:233
#, php-format
msgid "Image exceeds size limit of %s"
msgstr "L'image dépasse la taille limite de %s"
#: js_upload.php:246
msgid "File has an invalid extension, it should be one of "
msgstr "Le fichier à une extension invalide, cela devrait être une de ces "
#: js_upload.php:245
#, php-format
msgid "File has an invalid extension, it should be one of %s."
msgstr ""
#: js_upload.php:257
#: js_upload.php:256
msgid "Upload was cancelled, or server error encountered"
msgstr "Le téléchargement a été annulé ou le server a rencontré une erreur"

View file

@ -3,7 +3,7 @@
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['Select files for upload'] = 'Sélectionner les fichiers à télécharger';
$a->strings['Drop files here to upload'] = 'Glisser les fichiers ici pour uploader';
@ -11,6 +11,5 @@ $a->strings['Cancel'] = 'Annuler';
$a->strings['Failed'] = 'Echec';
$a->strings['No files were uploaded.'] = 'Aucun fichier téléchargé';
$a->strings['Uploaded file is empty'] = 'Le fichier téléchargé est vide';
$a->strings['Image exceeds size limit of '] = 'L\'image dépasse la taille limite de ';
$a->strings['File has an invalid extension, it should be one of '] = 'Le fichier à une extension invalide, cela devrait être une de ces ';
$a->strings['Image exceeds size limit of %s'] = 'L\'image dépasse la taille limite de %s';
$a->strings['Upload was cancelled, or server error encountered'] = 'Le téléchargement a été annulé ou le server a rencontré une erreur';