]> git.mxchange.org Git - friendica-addons.git/blob - wppost/lang/fr/strings.php
FR translation of various addons updated
[friendica-addons.git] / wppost / 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['Post to Wordpress'] = 'Publier sur Wordpress';
9 $a->strings['Enable Wordpress Post Addon'] = 'Activer l\'extension WordPress';
10 $a->strings['Wordpress username'] = 'Nom d\'utilisateur WordPress';
11 $a->strings['Wordpress password'] = 'Mot de passe WordPress';
12 $a->strings['WordPress API URL'] = 'URL de l\'API WordPress';
13 $a->strings['Post to Wordpress by default'] = 'Publier sur WordPress par défaut';
14 $a->strings['Provide a backlink to the Friendica post'] = 'Fournit un rétrolien vers la publication Friendica';
15 $a->strings['Text for the backlink, e.g. Read the original post and comment stream on Friendica.'] = 'Le texte du rétrolien, par exemple Lire la publication d\'origine et le fil de commentaires sur Friendica.';
16 $a->strings['Don\'t post messages that are too short'] = 'Ne pas publier de message trop court';
17 $a->strings['Wordpress Export'] = 'Export WordPress';
18 $a->strings['Read the orig­i­nal post and com­ment stream on Friendica'] = 'Lire la publication d\'origine et le fil de commentaires sur Friendica';
19 $a->strings['Post from Friendica'] = 'Publier depuis Friendica';