[ Index ] |
PHP Cross Reference of Unnamed Project |
[Summary view] [Print] [Text view]
1 <?php 2 /** 3 * 4 * viewforum [Standard french] 5 * translated originally by PhpBB-fr.com <http://www.phpbb-fr.com/> and phpBB.biz <http://www.phpBB.biz> 6 * 7 * @package language 8 * @version $Id: viewforum.php 79 2013-10-01 00:10:32Z Skouat $ 9 * @copyright (c) 2005 phpBB Group 10 * @license http://opensource.org/licenses/gpl-license.php GNU Public License 11 * 12 */ 13 14 /** 15 * DO NOT CHANGE 16 */ 17 if (!defined('IN_PHPBB')) 18 { 19 exit; 20 } 21 22 if (empty($lang) || !is_array($lang)) 23 { 24 $lang = array(); 25 } 26 27 // DEVELOPERS PLEASE NOTE 28 // 29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM. 30 // 31 // Placeholders can now contain order information, e.g. instead of 32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows 33 // translators to re-order the output of data while ensuring it remains correct 34 // 35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine 36 // equally where a string contains only two placeholders which are used to wrap text 37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine 38 39 $lang = array_merge($lang, array( 40 'ACTIVE_TOPICS' => 'Sujets actifs', 41 'ANNOUNCEMENTS' => 'Annonces', 42 43 'FORUM_PERMISSIONS' => 'Permissions du forum', 44 45 'ICON_ANNOUNCEMENT' => 'Annonce', 46 'ICON_STICKY' => 'Post-it', 47 48 'LOGIN_NOTIFY_FORUM' => 'Vous avez été averti de la présence d’un nouveau message dans ce forum, connectez-vous pour y accéder.', 49 50 'MARK_TOPICS_READ' => 'Marquer tous les sujets comme lus', 51 52 'NEW_POSTS_HOT' => 'Nouveaux messages [ Populaires ]', // Not used anymore 53 'NEW_POSTS_LOCKED' => 'Nouveaux messages [ Verrouillés ]', // Not used anymore 54 'NO_NEW_POSTS_HOT' => 'Pas de nouveaux messages [ Populaires ]', // Not used anymore 55 'NO_NEW_POSTS_LOCKED' => 'Pas de nouveaux messages [ Verrouillés ]', // Not used anymore 56 'NO_READ_ACCESS' => 'Vous n’avez pas les permissions requises pour lire les sujets de ce forum.', 57 'NO_UNREAD_POSTS_HOT' => 'Pas de messages non lus [ Populaires ]', 58 'NO_UNREAD_POSTS_LOCKED' => 'Pas de messages non lus [ Verrouillés ]', 59 60 'POST_FORUM_LOCKED' => 'Le forum est verrouillé', 61 62 'TOPICS_MARKED' => 'Les sujets de ce forum ont été marqués comme lus.', 63 64 'UNREAD_POSTS_HOT' => 'Messages non lus [ Populaires ]', 65 'UNREAD_POSTS_LOCKED' => 'Messages non lus [ Verrouillés ]', 66 67 'VIEW_FORUM' => 'Voir le forum', 68 'VIEW_FORUM_TOPIC' => '1 sujet', 69 'VIEW_FORUM_TOPICS' => '%d sujets', 70 )); 71 72 ?>
title
Description
Body
title
Description
Body
title
Description
Body
title
Body
Generated: Wed Oct 2 15:03:47 2013 | Cross-referenced by PHPXref 0.7.1 |