|
| 1 | +<?php |
| 2 | +/** |
| 3 | +* |
| 4 | +* Reputation System extension for the phpBB Forum Software package. |
| 5 | +* French translation by Galixte (http://www.galixte.com), tomberaid (https://github.com/tomberaid), flyingrub (https://github.com/flyingrub) & monpseudo (https://github.com/monpseudo) |
| 6 | +* |
| 7 | +* @copyright (c) 2014 Lukasz Kaczynski |
| 8 | +* @license GNU General Public License, version 2 (GPL-2.0) |
| 9 | +* |
| 10 | +*/ |
| 11 | + |
| 12 | +/** |
| 13 | +* DO NOT CHANGE |
| 14 | +*/ |
| 15 | +if (!defined('IN_PHPBB')) |
| 16 | +{ |
| 17 | + exit; |
| 18 | +} |
| 19 | + |
| 20 | +if (empty($lang) || !is_array($lang)) |
| 21 | +{ |
| 22 | + $lang = array(); |
| 23 | +} |
| 24 | + |
| 25 | +// DEVELOPERS PLEASE NOTE |
| 26 | +// |
| 27 | +// All language files should use UTF-8 as their encoding and the files must not contain a BOM. |
| 28 | +// |
| 29 | +// Placeholders can now contain order information, e.g. instead of |
| 30 | +// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows |
| 31 | +// translators to re-order the output of data while ensuring it remains correct |
| 32 | +// |
| 33 | +// You do not need this where single placeholders are used, e.g. 'Message %d' is fine |
| 34 | +// equally where a string contains only two placeholders which are used to wrap text |
| 35 | +// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine |
| 36 | +// |
| 37 | +// Some characters you may want to copy&paste: |
| 38 | +// ’ « » “ ” … |
| 39 | +// |
| 40 | + |
| 41 | +$lang = array_merge($lang, array( |
| 42 | + 'ACP_REPUTATION_SYSTEM' => 'Système de réputation', |
| 43 | + 'ACP_REPUTATION_OVERVIEW' => 'Vue d’ensemble', |
| 44 | + 'ACP_REPUTATION_SETTINGS' => 'Paramètres', |
| 45 | + 'ACP_REPUTATION_RATE' => 'Noter', |
| 46 | + 'ACP_REPUTATION_SYNC' => 'Synchroniser', |
| 47 | + |
| 48 | + 'RS_FORUM_REPUTATION' => 'Activer les notes pour les messages (réputation)', |
| 49 | + 'RS_FORUM_REPUTATION_EXPLAIN' => 'Autoriser tout utilisateur à noter les messages postés par les autres utilisateurs dans ce forum.', |
| 50 | + |
| 51 | + 'RS_GROUP_POWER' => 'Points d’influence du groupe', |
| 52 | + 'RS_GROUP_POWER_EXPLAIN' => 'Si ce champ est rempli, les points d’influence des membres seront écrasés et ne seront pas basés sur les messages etc.', |
| 53 | + |
| 54 | + 'LOG_REPUTATION_DELETED' => '<strong>Réputation supprimée</strong><br />De l’utilisateur : %1$s<br />Pour l’utilisateur : %2$s<br />Points : %3$s<br/>Type : %4$s<br/>ID du message : %5$s', |
| 55 | + 'LOG_POST_REPUTATION_CLEARED' => '<strong>Réputation du message effacée</strong><br />Auteur du message : %1$s<br />Sujet du message : %2$s', |
| 56 | + 'LOG_USER_REPUTATION_CLEARED' => '<strong>Réputation de l’utilisateur effacée</strong><br />Utilisateur : %1$s', |
| 57 | + 'LOG_REPUTATION_SYNC' => '<strong>Système de réputation resynchronisé</strong>', |
| 58 | + 'LOG_REPUTATION_TRUNCATE' => '<strong>Réputations effacées</strong>', |
| 59 | + 'REPUTATION_SETTINGS_CHANGED' => '<strong>Paramètres du système de réputation modifiés</strong>', |
| 60 | +)); |
0 commit comments