]> git.mxchange.org Git - friendica-addons.git/blob - testdrive/lang/fr/strings.php
cfadb1a91203601569f4571fb45a467281d321ac
[friendica-addons.git] / testdrive / lang / fr / strings.php
1 <?php
2
3 if(! function_exists("string_plural_select_fr")) {
4 function string_plural_select_fr($n){
5         $n = intval($n);
6         if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else  { return 2; }
7 }}
8 $a->strings['Administrator'] = 'Administrateur';
9 $a->strings['Your account on %s will expire in a few days.'] = 'Votre compte sur %s va expirer dans quelques jours.';
10 $a->strings['Your Friendica test account is about to expire.'] = 'Votre compte Friendica de test est sur le point d\'expirer.';