[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

/language/en/ -> viewforum.php (source)

   1  <?php
   2  /** 
   3  *
   4  * viewforum [English]
   5  *
   6  * @package language
   7  * @version $Id: viewforum.php,v 1.12 2006/09/17 22:02:27 naderman Exp $
   8  * @copyright (c) 2005 phpBB Group 
   9  * @license http://opensource.org/licenses/gpl-license.php GNU Public License 
  10  *
  11  */
  12  
  13  /**
  14  * DO NOT CHANGE
  15  */
  16  if (empty($lang) || !is_array($lang))
  17  {
  18      $lang = array();
  19  }
  20  
  21  // DEVELOPERS PLEASE NOTE
  22  //
  23  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  24  //
  25  // Placeholders can now contain order information, e.g. instead of
  26  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  27  // translators to re-order the output of data while ensuring it remains correct
  28  //
  29  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  30  // equally where a string contains only two placeholders which are used to wrap text
  31  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  32  
  33  $lang = array_merge($lang, array(
  34      'ACTIVE_TOPICS'            => 'Active topics',
  35      'ANNOUNCEMENTS'            => 'Announcements',
  36      
  37      'ICON_ANNOUNCEMENT'        => 'Announcement',
  38      'ICON_STICKY'            => 'Sticky',
  39  
  40      'LOGIN_NOTIFY_FORUM'    => 'You have been notified about this forum, please login to view it.',
  41  
  42      'MARK_TOPICS_READ'        => 'Mark Topics Read',
  43      'MOVED_TOPIC'            => 'Moved Topic',
  44  
  45      'NEW_POSTS_HOT'            => 'New posts [ Popular ]',
  46      'NEW_POSTS_LOCKED'        => 'New posts [ Locked ]',
  47      'NO_NEW_POSTS_HOT'        => 'No new posts [ Popular ]',
  48      'NO_NEW_POSTS_LOCKED'    => 'No new posts [ Locked ]',
  49  
  50      'POST_FORUM_LOCKED'        => 'Forum is locked',
  51  
  52      'TOPICS_MARKED'            => 'The topics for this forum have now been marked read',
  53  
  54      'VIEW_FORUM'            => 'View forum',
  55      'VIEW_FORUM_TOPIC'        => '1 topic',
  56      'VIEW_FORUM_TOPICS'        => '%d topics',
  57  ));
  58  
  59  ?>


Generated: Wed Nov 22 00:35:05 2006 Cross-referenced by PHPXref 0.6