Skip to content

Commit

Permalink
FRENCH translation for posts_merging.php
Browse files Browse the repository at this point in the history
FRENCH translation for posts_merging.php
  • Loading branch information
Galixte committed Dec 20, 2014
1 parent 52380e9 commit 40ac068
Showing 1 changed file with 67 additions and 0 deletions.
67 changes: 67 additions & 0 deletions language/fr/posts_merging.php
@@ -0,0 +1,67 @@
<?php
/**
*
* Posts Merging extension for the phpBB Forum Software package.
*
* @copyright (c) 2013 phpBB Limited <https://www.phpbb.com>
* @license GNU General Public License, version 2 (GPL-2.0)
*
* French translation by Galixte (http://www.galixte.com)
*
*/

/**
* @ignore
*/
if (!defined('IN_PHPBB'))
{
exit;
}

if (empty($lang) || !is_array($lang))
{
$lang = array();
}

// DEVELOPERS PLEASE NOTE
//
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
//
// Placeholders can now contain order information, e.g. instead of
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
// translators to re-order the output of data while ensuring it remains correct
//
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
// equally where a string contains only two placeholders which are used to wrap text
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine

$lang = array_merge($lang, array(
'MERGE_SEPARATOR' => "\n\n[size=85][color=green]Ajouté %s après :[/color][/size]\n",
'MERGE_SUBJECT' => "[size=85][color=green]%s[/color][/size]\n",
'POSTS_MERGING_OPTION' => 'Ne pas fusionner avec le message précédant',

'D_SECONDS' => array(
1 => '%d seconde',
2 => '%d secondes',
),
'D_MINUTES' => array(
1 => '%d minute',
2 => '%d minutes',
),
'D_HOURS' => array(
1 => '%d heure',
2 => '%d heures',
),
'D_MDAY' => array(
1 => '%d jour',
2 => '%d jours',
),
'D_MON' => array(
1 => '%d mois',
2 => '%d mois',
),
'D_YEAR' => array(
1 => '%d année',
2 => '%d années',
),
));

0 comments on commit 40ac068

Please sign in to comment.