FR translation of various addons updated
This commit is contained in:
parent
0ff332bd11
commit
4487b2a923
80 changed files with 963 additions and 971 deletions
|
@ -4,24 +4,52 @@
|
|||
#
|
||||
#
|
||||
# Translators:
|
||||
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
|
||||
# Thecross, 2017
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2017-12-04 22:24+0000\n"
|
||||
"Last-Translator: Thecross\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"
|
||||
"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"
|
||||
|
||||
#: rendertime.php:29
|
||||
#: rendertime.php:30
|
||||
msgid "Save Settings"
|
||||
msgstr "Enregistrer les paramètres"
|
||||
|
||||
#: rendertime.php:31
|
||||
msgid "Show callstack"
|
||||
msgstr ""
|
||||
|
||||
#: rendertime.php:31
|
||||
msgid ""
|
||||
"Show detailed performance measures in the callstack. When deactivated, only "
|
||||
"the summary will be displayed."
|
||||
msgstr ""
|
||||
|
||||
#: rendertime.php:32
|
||||
msgid "Minimal time"
|
||||
msgstr ""
|
||||
|
||||
#: rendertime.php:32
|
||||
msgid "Minimal time that an activity needs to be listed in the callstack."
|
||||
msgstr ""
|
||||
|
||||
#: rendertime.php:57
|
||||
#, php-format
|
||||
msgid ""
|
||||
"Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, "
|
||||
"Other: %s, Total: %s"
|
||||
msgstr "Performances: Base de données : %s, Réseau : %s, Rendu : %s, Parser : %s, Entrées/sorties : %s, Autre : %s, Total : %s"
|
||||
"Database: %s/%s, Network: %s, Rendering: %s, Session: %s, I/O: %s, Other: "
|
||||
"%s, Total: %s"
|
||||
msgstr ""
|
||||
|
||||
#: rendertime.php:74
|
||||
#, php-format
|
||||
msgid "Class-Init: %s, Boot: %s, Init: %s, Content: %s, Other: %s, Total: %s"
|
||||
msgstr ""
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
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['Performance: Database: %s, Network: %s, Rendering: %s, Parser: %s, I/O: %s, Other: %s, Total: %s'] = 'Performances: Base de données : %s, Réseau : %s, Rendu : %s, Parser : %s, Entrées/sorties : %s, Autre : %s, Total : %s';
|
||||
$a->strings['Save Settings'] = 'Enregistrer les paramètres';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue