X-Git-Url: https://git.mxchange.org/?a=blobdiff_plain;f=notifyall%2Flang%2Ffr%2Fstrings.php;h=487f2083bacd9f2b4106cc1eeb8d297de6cc0c2a;hb=91f5ba9eab867cec5cb523db6f487978ed3fb933;hp=5932cb06df87d9a2e1944473411d95662187b9be;hpb=25ba6023d0ac5d3fed79edeb207f00c0faa132e5;p=friendica-addons.git diff --git a/notifyall/lang/fr/strings.php b/notifyall/lang/fr/strings.php index 5932cb06..487f2083 100644 --- a/notifyall/lang/fr/strings.php +++ b/notifyall/lang/fr/strings.php @@ -3,8 +3,10 @@ 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['%1$s, %2$s Administrator'] = 'L\'administrateur de %1$s, %2$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';