FR translation of various addons updated
This commit is contained in:
parent
0ff332bd11
commit
4487b2a923
80 changed files with 963 additions and 971 deletions
|
@ -10,40 +10,36 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2021-02-01 18:15+0100\n"
|
||||
"PO-Revision-Date: 2021-03-22 08:49+0000\n"
|
||||
"Last-Translator: bob lebonche <lebonche@tutanota.com>\n"
|
||||
"POT-Creation-Date: 2021-11-21 19:17-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 08:37+0000\n"
|
||||
"Last-Translator: bob lebonche <lebonche@tutanota.com>, 2021\n"
|
||||
"Language-Team: French (http://www.transifex.com/Friendica/friendica/language/fr/)\n"
|
||||
"MIME-Version: 1.0\n"
|
||||
"Content-Type: text/plain; charset=UTF-8\n"
|
||||
"Content-Transfer-Encoding: 8bit\n"
|
||||
"Language: fr\n"
|
||||
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
|
||||
"Plural-Forms: nplurals=3; plural=(n == 0 || n == 1) ? 0 : n != 0 && n % 1000000 == 0 ? 1 : 2;\n"
|
||||
|
||||
#: ijpost.php:39
|
||||
#: ijpost.php:42
|
||||
msgid "Post to Insanejournal"
|
||||
msgstr "Publier sur Insanejournal"
|
||||
|
||||
#: ijpost.php:71 ijpost.php:75
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr "Export vers journal Insane "
|
||||
|
||||
#: ijpost.php:79
|
||||
#: ijpost.php:61
|
||||
msgid "Enable InsaneJournal Post Addon"
|
||||
msgstr "Activer l'application complémentaire InsaneJournalPost"
|
||||
|
||||
#: ijpost.php:84
|
||||
#: ijpost.php:62
|
||||
msgid "InsaneJournal username"
|
||||
msgstr "Identifiant du InsaneJournal"
|
||||
|
||||
#: ijpost.php:89
|
||||
#: ijpost.php:63
|
||||
msgid "InsaneJournal password"
|
||||
msgstr "Mot de passe du InsaneJournal"
|
||||
|
||||
#: ijpost.php:94
|
||||
#: ijpost.php:64
|
||||
msgid "Post to InsaneJournal by default"
|
||||
msgstr "Publier sur le InsaneJournal par défaut"
|
||||
|
||||
#: ijpost.php:99
|
||||
msgid "Save Settings"
|
||||
msgstr "Sauvegarder les paramètres"
|
||||
#: ijpost.php:69
|
||||
msgid "InsaneJournal Export"
|
||||
msgstr "Export vers journal Insane "
|
||||
|
|
|
@ -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 Insanejournal'] = 'Publier sur Insanejournal';
|
||||
$a->strings['InsaneJournal Export'] = 'Export vers journal Insane ';
|
||||
$a->strings['Enable InsaneJournal Post Addon'] = 'Activer l\'application complémentaire InsaneJournalPost';
|
||||
$a->strings['InsaneJournal username'] = 'Identifiant du InsaneJournal';
|
||||
$a->strings['InsaneJournal password'] = 'Mot de passe du InsaneJournal';
|
||||
$a->strings['Post to InsaneJournal by default'] = 'Publier sur le InsaneJournal par défaut';
|
||||
$a->strings['Save Settings'] = 'Sauvegarder les paramètres';
|
||||
$a->strings['InsaneJournal Export'] = 'Export vers journal Insane ';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue