2017-12-10 07:47:29 +00:00
|
|
|
<?php
|
|
|
|
|
|
|
|
if(! function_exists("string_plural_select_fr")) {
|
|
|
|
function string_plural_select_fr($n){
|
2021-02-01 17:47:38 +00:00
|
|
|
$n = intval($n);
|
|
|
|
return intval($n > 1);
|
2017-12-10 07:47:29 +00:00
|
|
|
}}
|
2021-10-10 06:27:53 +00: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';
|