FR translation of various addons updated

This commit is contained in:
Tobias Diekershoff 2022-08-19 19:37:09 +02:00
parent 0ff332bd11
commit 4487b2a923
80 changed files with 963 additions and 971 deletions

View file

@ -1,13 +1,16 @@
<?php
$a->strings["Post to Wordpress"] = "Poster sur WordPress";
$a->strings["WordPress Post Settings"] = "Réglages WordPress";
$a->strings["Enable WordPress Post Addon"] = "Activer l'extension WordPress";
$a->strings["WordPress username"] = "Utilisateur WordPress";
$a->strings["WordPress password"] = "Mot de passe WordPress";
$a->strings["WordPress API URL"] = "URL de l'API WordPress";
$a->strings["Post to WordPress by default"] = "Publier sur WordPress par défaut";
$a->strings["Provide a backlink to the Friendica post"] = "Fournir un rétrolien vers le message sur Friendica";
$a->strings["Submit"] = "Envoyer";
$a->strings["Post from Friendica"] = "Publier depuis Friendica";
$a->strings["Read the original post and comment stream on Friendica"] = "Lire le message d'origine et le flux des commentaires sur Friendica";
<?php
if(! function_exists("string_plural_select_fr")) {
function string_plural_select_fr($n){
$n = intval($n);
if (($n == 0 || $n == 1)) { return 0; } else if ($n != 0 && $n % 1000000 == 0) { return 1; } else { return 2; }
}}
$a->strings['Post to Wordpress'] = 'Publier sur Wordpress';
$a->strings['Enable Wordpress Post Addon'] = 'Activer l\'extension WordPress';
$a->strings['Wordpress username'] = 'Nom d\'utilisateur WordPress';
$a->strings['Wordpress password'] = 'Mot de passe WordPress';
$a->strings['WordPress API URL'] = 'URL de l\'API WordPress';
$a->strings['Post to Wordpress by default'] = 'Publier sur WordPress par défaut';
$a->strings['Don\'t post messages that are too short'] = 'Ne pas publier de message trop court';
$a->strings['Wordpress Export'] = 'Export WordPress';
$a->strings['Post from Friendica'] = 'Publier depuis Friendica';