Viewing file: viewforum.php (2.67 KB) -rw-rw-r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php /** * * viewforum [French] * * @package language * @version $Id: viewforum.php 8479 2008-03-29 00:22:48Z naderman $ * @copyright (c) 2005 phpBB Group * @license http://opensource.org/licenses/gpl-license.php GNU Public License * */
/** * DO NOT CHANGE */ if (!defined('IN_PHPBB')) { exit; }
if (empty($lang) || !is_array($lang)) { $lang = array(); }
// // TRANSLATION DETAILS // // Author: Maël Soucaze // Website: http://twitter.com/MaelSoucaze // // TRANSLATION LICENSE // // This program is free software: you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by // the Free Software Foundation, version 2 of the License. // // This program is distributed in the hope that it will be useful, // but WITHOUT ANY WARRANTY; without even the implied warranty of // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the // GNU General Public License for more details. // // You should have received a copy of the GNU General Public License // along with this program. If not, see http://opensource.org/licenses/gpl-license.php. // // 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( 'ACTIVE_TOPICS' => 'Sujets actifs', 'ANNOUNCEMENTS' => 'Annonces',
'FORUM_PERMISSIONS' => 'Permissions du forum',
'ICON_ANNOUNCEMENT' => 'Annonce', 'ICON_STICKY' => 'Note',
'LOGIN_NOTIFY_FORUM' => 'Vous avez été averti à partir de ce forum, veuillez vous connecter afin de le consulter.',
'MARK_TOPICS_READ' => 'Marquer les sujets comme lus',
'NEW_POSTS_HOT' => 'Nouveaux messages [ Populaires ]', 'NEW_POSTS_LOCKED' => 'Nouveaux messages [ Verrouillés ]', 'NO_NEW_POSTS_HOT' => 'Aucun nouveau message [ Populaire ]', 'NO_NEW_POSTS_LOCKED' => 'Aucun nouveau message [ Verrouillé ]', 'NO_READ_ACCESS' => 'Vous n’avez pas les permissions appropriées afin de lire les sujets de ce forum.',
'POST_FORUM_LOCKED' => 'Le forum est verrouillé',
'TOPICS_MARKED' => 'Les sujets de ce forum sont à présent marqués comme lus.',
'VIEW_FORUM' => 'Voir le forum', 'VIEW_FORUM_TOPIC' => '1 sujet', 'VIEW_FORUM_TOPICS' => '%d sujets', ));
?>
|