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,62 +4,59 @@
|
|||
#
|
||||
#
|
||||
# Translators:
|
||||
# Nicola Spanti <translations@nicola-spanti.info>, 2015
|
||||
# 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: 2015-07-26 12:49+0200\n"
|
||||
"PO-Revision-Date: 2015-08-30 17:16+0000\n"
|
||||
"Last-Translator: Nicola Spanti <translations@nicola-spanti.info>\n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2014-06-23 11:18+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"
|
||||
|
||||
#: piwik.php:79
|
||||
#: piwik.php:87
|
||||
msgid ""
|
||||
"This website is tracked using the <a href='http://www.piwik.org'>Piwik</a> "
|
||||
"analytics tool."
|
||||
msgstr "Ce site web utilise <a href='http://www.piwik.org'>Piwik</a> en tant qu'outil d'analyses."
|
||||
"This website is tracked using the <a href='http://www.matomo.org'>Matomo</a>"
|
||||
" analytics tool."
|
||||
msgstr "Ce site Internet utilise <a href='http://www.matomo.org'>Matomo</a> pour mesurer son audience."
|
||||
|
||||
#: piwik.php:82
|
||||
#: piwik.php:90
|
||||
#, php-format
|
||||
msgid ""
|
||||
"If you do not want that your visits are logged in this way you <a "
|
||||
"href='%s'>can set a cookie to prevent Piwik from tracking further visits of "
|
||||
"the site</a> (opt-out)."
|
||||
"href='%s'>can set a cookie to prevent Matomo / Piwik from tracking further "
|
||||
"visits of the site</a> (opt-out)."
|
||||
msgstr ""
|
||||
|
||||
#: piwik.php:89
|
||||
#: piwik.php:97
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramètres"
|
||||
|
||||
#: piwik.php:90
|
||||
msgid "Piwik Base URL"
|
||||
msgstr "URL de base de Piwik"
|
||||
#: piwik.php:98
|
||||
msgid "Matomo (Piwik) Base URL"
|
||||
msgstr "URL de base de Matomo (Piwik)"
|
||||
|
||||
#: piwik.php:90
|
||||
#: piwik.php:98
|
||||
msgid ""
|
||||
"Absolute path to your Piwik installation. (without protocol (http/s), with "
|
||||
"trailing slash)"
|
||||
"Absolute path to your Matomo (Piwik) installation. (without protocol "
|
||||
"(http/s), with trailing slash)"
|
||||
msgstr ""
|
||||
|
||||
#: piwik.php:91
|
||||
#: piwik.php:99
|
||||
msgid "Site ID"
|
||||
msgstr "ID du site"
|
||||
|
||||
#: piwik.php:92
|
||||
#: piwik.php:100
|
||||
msgid "Show opt-out cookie link?"
|
||||
msgstr "Montrer le lien d'opt-out pour les cookies ?"
|
||||
|
||||
#: piwik.php:93
|
||||
#: piwik.php:101
|
||||
msgid "Asynchronous tracking"
|
||||
msgstr "Suivi asynchrone"
|
||||
|
||||
#: piwik.php:105
|
||||
msgid "Settings updated."
|
||||
msgstr "Paramètres mis à jour."
|
||||
|
|
|
@ -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['This website is tracked using the <a href=\'http://www.piwik.org\'>Piwik</a> analytics tool.'] = 'Ce site web utilise <a href=\'http://www.piwik.org\'>Piwik</a> en tant qu\'outil d\'analyses.';
|
||||
$a->strings['This website is tracked using the <a href=\'http://www.matomo.org\'>Matomo</a> analytics tool.'] = 'Ce site Internet utilise <a href=\'http://www.matomo.org\'>Matomo</a> pour mesurer son audience.';
|
||||
$a->strings['Save Settings'] = 'Sauvegarder les paramètres';
|
||||
$a->strings['Piwik Base URL'] = 'URL de base de Piwik';
|
||||
$a->strings['Matomo (Piwik) Base URL'] = 'URL de base de Matomo (Piwik)';
|
||||
$a->strings['Site ID'] = 'ID du site';
|
||||
$a->strings['Show opt-out cookie link?'] = 'Montrer le lien d\'opt-out pour les cookies ?';
|
||||
$a->strings['Asynchronous tracking'] = 'Suivi asynchrone';
|
||||
$a->strings['Settings updated.'] = 'Paramètres mis à jour.';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue