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

@ -4,38 +4,35 @@
#
#
# Translators:
# Hypolite Petovan <hypolite@mrpetovan.com>, 2022
# Marie Olive <lacellule101@gmail.com>, 2018
# Tubuntu <tubuntu@testimonium.be>, 2014
# Tubuntu, 2014
msgid ""
msgstr ""
"Project-Id-Version: friendica\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2014-10-26 15:02+0100\n"
"PO-Revision-Date: 2018-11-13 12:57+0000\n"
"Last-Translator: Marie Olive <lacellule101@gmail.com>\n"
"POT-Creation-Date: 2021-11-21 19:16-0500\n"
"PO-Revision-Date: 2014-10-31 13:43+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"
#: windowsphonepush.php:85
msgid "WindowsPhonePush settings updated."
msgstr "Paramètres WindowsPhonePush mis à jour"
#: windowsphonepush.php:114
msgid "WindowsPhonePush Settings"
msgstr "Paramètres WindowsPhonePush"
#: windowsphonepush.php:117
#: windowsphonepush.php:102
msgid "Enable WindowsPhonePush Addon"
msgstr "Activer l'extension WindowsPhonePush"
#: windowsphonepush.php:122
#: windowsphonepush.php:103
msgid "Push text of new item"
msgstr "Pousse le texte du nouvel élément"
#: windowsphonepush.php:127
msgid "Save Settings"
msgstr "Sauvegarde des paramètres"
#: windowsphonepush.php:104
msgid "Device URL"
msgstr "URL de périphérique"
#: windowsphonepush.php:109
msgid "WindowsPhonePush Settings"
msgstr "Paramètres WindowsPhonePush"

View file

@ -3,10 +3,9 @@
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['WindowsPhonePush settings updated.'] = 'Paramètres WindowsPhonePush mis à jour';
$a->strings['WindowsPhonePush Settings'] = 'Paramètres WindowsPhonePush';
$a->strings['Enable WindowsPhonePush Addon'] = 'Activer l\'extension WindowsPhonePush';
$a->strings['Push text of new item'] = 'Pousse le texte du nouvel élément';
$a->strings['Save Settings'] = 'Sauvegarde des paramètres';
$a->strings['Device URL'] = 'URL de périphérique';
$a->strings['WindowsPhonePush Settings'] = 'Paramètres WindowsPhonePush';