mirror of
https://git.friendi.ca/friendica/friendica-addons.git
synced 2025-07-12 03:18:48 +00:00
FR translation of various addons updated
This commit is contained in:
parent
0ff332bd11
commit
4487b2a923
80 changed files with 963 additions and 971 deletions
|
@ -9,28 +9,20 @@ 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: 2017-12-09 23:22+0000\n"
|
||||
"Last-Translator: Thecross\n"
|
||||
"POT-Creation-Date: 2021-11-21 19:15-0500\n"
|
||||
"PO-Revision-Date: 2014-06-23 10:58+0000\n"
|
||||
"Last-Translator: Thecross, 2017\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"
|
||||
|
||||
#: numfriends.php:46
|
||||
msgid "Numfriends settings updated."
|
||||
msgstr "Configuration de Numfriends mise à jour."
|
||||
|
||||
#: numfriends.php:77
|
||||
msgid "Numfriends Settings"
|
||||
msgstr "Réglages de Numfriends"
|
||||
|
||||
#: numfriends.php:79
|
||||
#: numfriends.php:55
|
||||
msgid "How many contacts to display on profile sidebar"
|
||||
msgstr "Nombre de contacts à afficher dans le volet de profil"
|
||||
|
||||
#: numfriends.php:85
|
||||
msgid "Submit"
|
||||
msgstr "Appliquer"
|
||||
#: numfriends.php:60
|
||||
msgid "Numfriends Settings"
|
||||
msgstr "Réglages de Numfriends"
|
||||
|
|
|
@ -3,9 +3,7 @@
|
|||
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['Numfriends settings updated.'] = 'Configuration de Numfriends mise à jour.';
|
||||
$a->strings['Numfriends Settings'] = 'Réglages de Numfriends';
|
||||
$a->strings['How many contacts to display on profile sidebar'] = 'Nombre de contacts à afficher dans le volet de profil';
|
||||
$a->strings['Submit'] = 'Appliquer';
|
||||
$a->strings['Numfriends Settings'] = 'Réglages de Numfriends';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue