notifyall addon FR translation updated THX kalon33

This commit is contained in:
Tobias Diekershoff 2022-05-24 08:00:56 +02:00
parent d0dfb04585
commit 53a806af87
No known key found for this signature in database
GPG key ID: 25FE376FF17694A1
2 changed files with 23 additions and 18 deletions

View file

@ -3,8 +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['%s Administrator'] = 'L\'administrateur de %s';
$a->strings['Send email to all members'] = 'Envoyer un courriel à tous les membres';
$a->strings['No recipients found.'] = 'Aucun destinataire trouvé.';
$a->strings['Emails sent'] = 'Courriels envoyés';