2017-12-10 08:47:29 +01:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_fr")) {
|
|
|
|
function string_plural_select_fr($n){
|
2021-02-01 18:47:38 +01:00
|
|
|
$n = intval($n);
|
2022-05-24 08:00:56 +02:00
|
|
|
if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
|
2017-12-10 08:47:29 +01:00
|
|
|
}}
|
2022-05-24 08:00:56 +02:00
|
|
|
$a->strings['%s Administrator'] = 'L\'administrateur de %s';
|
2021-10-10 08:27:53 +02:00
|
|
|
$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';
|
|
|
|
$a->strings['Send email to all members of this Friendica instance.'] = 'Envoyer un courriel à tous les membres de cet instance Friendica.';
|
|
|
|
$a->strings['Message subject'] = 'Objet du message';
|
|
|
|
$a->strings['Test mode (only send to administrator)'] = 'Mode test (envoyer uniquement à l\'administrateur)';
|
|
|
|
$a->strings['Submit'] = 'Envoyer';
|