FR translation of various addons updated
[friendica-addons.git/.git] / dwpost / lang / fr / strings.php
index cea6cbc..f33e740 100644 (file)
@@ -3,12 +3,11 @@
 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['Post to Dreamwidth'] = 'Publier sur Dreamwidth';
+$a->strings['Enable Dreamwidth Post Addon'] = 'Activer l\'extension Dreamwidth';
+$a->strings['Dreamwidth username'] = 'Nom d\'utilisateur Dreamwidth';
+$a->strings['Dreamwidth password'] = 'Mot de passe Dreamwidth';
+$a->strings['Post to Dreamwidth by default'] = 'Publier sur Dreamwidth par défaut';
 $a->strings['Dreamwidth Export'] = 'Export Dreamwidth';
-$a->strings['Enable dreamwidth Post Addon'] = 'Activer l\'application complémentaire de publication Dreamwidth.';
-$a->strings['dreamwidth username'] = 'Nom d\'utilisateur Dreamwidth';
-$a->strings['dreamwidth password'] = 'Mot de passe dreamwidth';
-$a->strings['Post to dreamwidth by default'] = 'Poster sur Dreamwidth par défaut';
-$a->strings['Save Settings'] = 'Sauvegarder les paramètres';