mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 19:38:49 +00:00
FR translation update for buffer, editplain, gravatar, jappixmini, langfilter, libertree, mailstream, piwik and twitter addons
This commit is contained in:
parent
b448d90a89
commit
ed699d8ef4
18 changed files with 811 additions and 77 deletions
78
jappixmini/lang/fr/messages.po
Normal file
78
jappixmini/lang/fr/messages.po
Normal file
|
@ -0,0 +1,78 @@
|
|||
# ADDON jappixmini
|
||||
# Copyright (C)
|
||||
# This file is distributed under the same license as the Friendica jappixmini addon package.
|
||||
#
|
||||
#
|
||||
# Translators:
|
||||
# Nicola Spanti <translations@nicola-spanti.info>, 2015
|
||||
# StefOfficiel <pichard.stephane@free.fr>, 2015
|
||||
msgid ""
|
||||
msgstr ""
|
||||
"Project-Id-Version: friendica\n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"PO-Revision-Date: 2015-07-27 18:17+0000\n"
|
||||
"Last-Translator: Nicola Spanti <translations@nicola-spanti.info>\n"
|
||||
"Language-Team: French (http://www.transifex.com/projects/p/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"
|
||||
|
||||
#: jappixmini.php:266
|
||||
msgid "Jappix Mini addon settings"
|
||||
msgstr "Paramètres de l'addon Jappix Mini"
|
||||
|
||||
#: jappixmini.php:268
|
||||
msgid "Activate addon"
|
||||
msgstr "Activer l'addon"
|
||||
|
||||
#: jappixmini.php:271
|
||||
msgid ""
|
||||
"Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"
|
||||
msgstr "Ne <em>pas</em> insérer le widget JappixMini dans l'interface web"
|
||||
|
||||
#: jappixmini.php:274
|
||||
msgid "Jabber username"
|
||||
msgstr "Nom d'utilisateur Jabber"
|
||||
|
||||
#: jappixmini.php:277
|
||||
msgid "Jabber server"
|
||||
msgstr "Serveur Jabber"
|
||||
|
||||
#: jappixmini.php:281
|
||||
msgid "Jabber BOSH host"
|
||||
msgstr "Hôte BOSH (proxy) Jabber"
|
||||
|
||||
#: jappixmini.php:285
|
||||
msgid "Jabber password"
|
||||
msgstr "Mot de passe Jabber"
|
||||
|
||||
#: jappixmini.php:290
|
||||
msgid "Encrypt Jabber password with Friendica password (recommended)"
|
||||
msgstr "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)"
|
||||
|
||||
#: jappixmini.php:293
|
||||
msgid "Friendica password"
|
||||
msgstr "Mot de passe Friendica"
|
||||
|
||||
#: jappixmini.php:296
|
||||
msgid "Approve subscription requests from Friendica contacts automatically"
|
||||
msgstr ""
|
||||
|
||||
#: jappixmini.php:299
|
||||
msgid "Subscribe to Friendica contacts automatically"
|
||||
msgstr "S'inscrire aux contacts Friendica automatiquement"
|
||||
|
||||
#: jappixmini.php:302
|
||||
msgid "Purge internal list of jabber addresses of contacts"
|
||||
msgstr "Purger la liste interne d'adresses Jabber"
|
||||
|
||||
#: jappixmini.php:307
|
||||
msgid "Submit"
|
||||
msgstr "Envoyer"
|
||||
|
||||
#: jappixmini.php:308
|
||||
msgid "Add contact"
|
||||
msgstr "Ajouter un contact"
|
|
@ -1,16 +1,21 @@
|
|||
<?php
|
||||
|
||||
$a->strings["Jappix Mini addon settings"] = "Jappix Mini";
|
||||
$a->strings["Activate addon"] = "Activer";
|
||||
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Ne <em>pas</em> insérer le widget JappixMini dans l'interface web";
|
||||
$a->strings["Jabber username"] = "Utilisateur Jabber";
|
||||
$a->strings["Jabber server"] = "Serveur Jabber";
|
||||
$a->strings["Jabber BOSH host"] = "Hôte BOSH (proxy) Jabber";
|
||||
$a->strings["Jabber password"] = "Mot de passe Jabber";
|
||||
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)";
|
||||
$a->strings["Friendica password"] = "Mot de passe Friendica";
|
||||
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "Approuver les contacts Friendica automatiquement";
|
||||
$a->strings["Subscribe to Friendica contacts automatically"] = "S'inscrire aux contacts Friendica automatiquement";
|
||||
$a->strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne d'adresses Jabber";
|
||||
$a->strings["Submit"] = "Envoyer";
|
||||
$a->strings["Add contact"] = "Ajouter un contact";
|
||||
<?php
|
||||
|
||||
if(! function_exists("string_plural_select_fr")) {
|
||||
function string_plural_select_fr($n){
|
||||
return ($n > 1);;
|
||||
}}
|
||||
;
|
||||
$a->strings["Jappix Mini addon settings"] = "Paramètres de l'addon Jappix Mini";
|
||||
$a->strings["Activate addon"] = "Activer l'addon";
|
||||
$a->strings["Do <em>not</em> insert the Jappixmini Chat-Widget into the webinterface"] = "Ne <em>pas</em> insérer le widget JappixMini dans l'interface web";
|
||||
$a->strings["Jabber username"] = "Nom d'utilisateur Jabber";
|
||||
$a->strings["Jabber server"] = "Serveur Jabber";
|
||||
$a->strings["Jabber BOSH host"] = "Hôte BOSH (proxy) Jabber";
|
||||
$a->strings["Jabber password"] = "Mot de passe Jabber";
|
||||
$a->strings["Encrypt Jabber password with Friendica password (recommended)"] = "Chiffrer le mot de passe Jabber avec le mot de passe Friendica (recommandé)";
|
||||
$a->strings["Friendica password"] = "Mot de passe Friendica";
|
||||
$a->strings["Approve subscription requests from Friendica contacts automatically"] = "";
|
||||
$a->strings["Subscribe to Friendica contacts automatically"] = "S'inscrire aux contacts Friendica automatiquement";
|
||||
$a->strings["Purge internal list of jabber addresses of contacts"] = "Purger la liste interne d'adresses Jabber";
|
||||
$a->strings["Submit"] = "Envoyer";
|
||||
$a->strings["Add contact"] = "Ajouter un contact";
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue