notifyall addon FR translation updated THX kalon33
parent
ee07235fba
commit
18eb65d8ea
|
@ -3,55 +3,59 @@
|
||||||
# This file is distributed under the same license as the Friendica notifyall addon package.
|
# This file is distributed under the same license as the Friendica notifyall addon package.
|
||||||
#
|
#
|
||||||
#
|
#
|
||||||
|
# Translators:
|
||||||
|
# Thecross, 2017
|
||||||
|
# Nicolas Derive, 2022
|
||||||
|
#
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: \n"
|
"Project-Id-Version: \n"
|
||||||
"Report-Msgid-Bugs-To: \n"
|
"Report-Msgid-Bugs-To: \n"
|
||||||
"POT-Creation-Date: 2016-08-14 16:41+0200\n"
|
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: 2016-08-14 19:29+0000\n"
|
||||||
"Last-Translator: Thecross <louis1302@hotmail.fr>, 2017\n"
|
"Last-Translator: Nicolas Derive, 2022\n"
|
||||||
"Language-Team: French (https://www.transifex.com/Friendica/teams/12172/fr/)\n"
|
"Language-Team: French (https://www.transifex.com/Friendica/teams/12172/fr/)\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Language: fr\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"
|
||||||
|
|
||||||
#: notifyall.php:26
|
#: NotifyAllEmail.php:40
|
||||||
msgid "Send email to all members"
|
|
||||||
msgstr "Envoyer un courriel à tous les membres"
|
|
||||||
|
|
||||||
#: notifyall.php:42
|
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%s Administrator"
|
msgid "%s Administrator"
|
||||||
msgstr ""
|
msgstr "L'administrateur de %s"
|
||||||
|
|
||||||
#: notifyall.php:44
|
#: NotifyAllEmail.php:42
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%1$s, %2$s Administrator"
|
msgid "%1$s, %2$s Administrator"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: notifyall.php:60
|
#: notifyall.php:22
|
||||||
|
msgid "Send email to all members"
|
||||||
|
msgstr "Envoyer un courriel à tous les membres"
|
||||||
|
|
||||||
|
#: notifyall.php:49
|
||||||
msgid "No recipients found."
|
msgid "No recipients found."
|
||||||
msgstr "Aucun destinataire trouvé."
|
msgstr "Aucun destinataire trouvé."
|
||||||
|
|
||||||
#: notifyall.php:78
|
#: notifyall.php:59
|
||||||
msgid "Emails sent"
|
msgid "Emails sent"
|
||||||
msgstr "Courriels envoyés"
|
msgstr "Courriels envoyés"
|
||||||
|
|
||||||
#: notifyall.php:86
|
#: notifyall.php:69
|
||||||
msgid "Send email to all members of this Friendica instance."
|
msgid "Send email to all members of this Friendica instance."
|
||||||
msgstr "Envoyer un courriel à tous les membres de cet instance Friendica."
|
msgstr "Envoyer un courriel à tous les membres de cet instance Friendica."
|
||||||
|
|
||||||
#: notifyall.php:91
|
#: notifyall.php:74
|
||||||
msgid "Message subject"
|
msgid "Message subject"
|
||||||
msgstr "Objet du message"
|
msgstr "Objet du message"
|
||||||
|
|
||||||
#: notifyall.php:92
|
#: notifyall.php:75
|
||||||
msgid "Test mode (only send to administrator)"
|
msgid "Test mode (only send to administrator)"
|
||||||
msgstr "Mode test (envoyer uniquement à l'administrateur)"
|
msgstr "Mode test (envoyer uniquement à l'administrateur)"
|
||||||
|
|
||||||
#: notifyall.php:93
|
#: notifyall.php:76
|
||||||
msgid "Submit"
|
msgid "Submit"
|
||||||
msgstr "Envoyer"
|
msgstr "Envoyer"
|
||||||
|
|
|
@ -3,8 +3,9 @@
|
||||||
if(! function_exists("string_plural_select_fr")) {
|
if(! function_exists("string_plural_select_fr")) {
|
||||||
function string_plural_select_fr($n){
|
function string_plural_select_fr($n){
|
||||||
$n = intval($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['%s Administrator'] = 'L\'administrateur de %s';
|
||||||
$a->strings['Send email to all members'] = 'Envoyer un courriel à tous les membres';
|
$a->strings['Send email to all members'] = 'Envoyer un courriel à tous les membres';
|
||||||
$a->strings['No recipients found.'] = 'Aucun destinataire trouvé.';
|
$a->strings['No recipients found.'] = 'Aucun destinataire trouvé.';
|
||||||
$a->strings['Emails sent'] = 'Courriels envoyés';
|
$a->strings['Emails sent'] = 'Courriels envoyés';
|
||||||
|
|
Loading…
Reference in New Issue