FR translation of various addons updated
This commit is contained in:
parent
0ff332bd11
commit
4487b2a923
80 changed files with 963 additions and 971 deletions
|
@ -11,7 +11,7 @@ msgid ""
|
|||
msgstr ""
|
||||
"Project-Id-Version: \n"
|
||||
"Report-Msgid-Bugs-To: \n"
|
||||
"POT-Creation-Date: 2013-02-27 05:01-0500\n"
|
||||
"POT-Creation-Date: 2021-02-01 18:16+0100\n"
|
||||
"PO-Revision-Date: 2018-03-20 07:26+0000\n"
|
||||
"Last-Translator: Marie Olive <lacellule101@gmail.com>, 2018\n"
|
||||
"Language-Team: French (https://www.transifex.com/Friendica/teams/12172/fr/)\n"
|
||||
|
@ -19,8 +19,8 @@ msgstr ""
|
|||
"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"
|
||||
|
||||
#: viewsrc.php:39
|
||||
#: viewsrc.php:49
|
||||
msgid "View Source"
|
||||
msgstr "Voir source"
|
||||
|
|
|
@ -3,6 +3,6 @@
|
|||
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['View Source'] = 'Voir source';
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue