FR translation of various addons updated

This commit is contained in:
Tobias Diekershoff 2022-12-17 09:04:29 +01:00
parent d1d3c73d25
commit 0b0d555c69
36 changed files with 607 additions and 59 deletions

View file

@ -5,6 +5,7 @@
#
# Translators:
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
# Nicolas Derive, 2022
# Thecross, 2017
msgid ""
msgstr ""
@ -12,7 +13,7 @@ msgstr ""
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2021-12-12 22:09+0000\n"
"PO-Revision-Date: 2014-06-23 12:36+0000\n"
"Last-Translator: Hypolite Petovan <hypolite@mrpetovan.com>, 2022\n"
"Last-Translator: Nicolas Derive, 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"
@ -26,30 +27,30 @@ msgstr "Enregistrer les paramètres"
#: rendertime.php:31
msgid "Show callstack"
msgstr ""
msgstr "Afficher le callstack"
#: rendertime.php:31
msgid ""
"Show detailed performance measures in the callstack. When deactivated, only "
"the summary will be displayed."
msgstr ""
msgstr "Affiche les performances détaillées dans le callstack. Si désactivé, seul le résumé sera affiché."
#: rendertime.php:32
msgid "Minimal time"
msgstr ""
msgstr "Temps minimal"
#: rendertime.php:32
msgid "Minimal time that an activity needs to be listed in the callstack."
msgstr ""
msgstr "Temps minimal qu'une activité nécessite afin d'être listée dans le callstack."
#: rendertime.php:57
#, php-format
msgid ""
"Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: "
"%s, Total: %s"
msgstr ""
msgstr "Base de données : %s/%s, Réseau : %s, Rendu : %s, Session : %s, E/S : %s, Autre : %s, Total : %s"
#: rendertime.php:74
#, php-format
msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s"
msgstr ""
msgstr "Initialisation classes : %s, Démarrage : %s, Initialisation :%s, Contenu : %s, Autre : %s, Total : %s"

View file

@ -6,3 +6,9 @@ function string_plural_select_fr($n){
if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$a->strings['Save Settings'] = 'Enregistrer les paramètres';
$a->strings['Show callstack'] = 'Afficher le callstack';
$a->strings['Show detailed performance measures in the callstack. When deactivated, only the summary will be displayed.'] = 'Affiche les performances détaillées dans le callstack. Si désactivé, seul le résumé sera affiché.';
$a->strings['Minimal time'] = 'Temps minimal';
$a->strings['Minimal time that an activity needs to be listed in the callstack.'] = 'Temps minimal qu\'une activité nécessite afin d\'être listée dans le callstack.';
$a->strings['Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: %s, Total: %s'] = 'Base de données : %s/%s, Réseau : %s, Rendu : %s, Session : %s, E/S : %s, Autre : %s, Total : %s';
$a->strings['Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s'] = 'Initialisation classes : %s, Démarrage : %s, Initialisation :%s, Contenu : %s, Autre : %s, Total : %s';