[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

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

   1  <?php
   2  /** 
   3  *
   4  * viewtopic [English]
   5  *
   6  * @package language
   7  * @version $Id: viewtopic.php,v 1.14 2006/09/24 00:28:32 shs 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      'ATTACHMENT'                        => 'Attachment',
  35      'ATTACHMENT_FUNCTIONALITY_DISABLED'    => 'Attachment has been disabled',
  36  
  37      'BOOKMARK_ADDED'        => 'Bookmarked topic successfully.',
  38      'BOOKMARK_REMOVED'        => 'Removed bookmarked topic successfully.',
  39      'BOOKMARK_TOPIC'        => 'Bookmark topic',
  40      'BOOKMARK_TOPIC_REMOVE'    => 'Remove from bookmarks',
  41      'BUMPED_BY'                => 'Last bumped by %1$s on %2$s',
  42      'BUMP_TOPIC'            => 'Bump topic',
  43  
  44      'CODE'                    => 'Code',
  45  
  46      'DELETE_TOPIC'            => 'Delete topic',
  47      'DOWNLOAD_NOTICE'        => 'You do not have the required permissions to view the files attached to this post.',
  48  
  49      'EDITED_TIMES_TOTAL'    => 'Last edited by %1$s on %2$s, edited %3$d times in total',
  50      'EDITED_TIME_TOTAL'        => 'Last edited by %1$s on %2$s, edited %3$d time in total',
  51      'EMAIL_TOPIC'            => 'Email friend',
  52      'ERROR_NO_ATTACHMENT'    => 'The selected Attachment does not exist anymore',
  53  
  54      'FILE_NOT_FOUND_404'    => 'The file <strong>%s</strong> does not exist.',
  55      'FORK_TOPIC'            => 'Copy topic',
  56  
  57      'LINKAGE_FORBIDDEN'        => 'You are not authorised to view, download or link from/to this site.',
  58      'LOGIN_NOTIFY_TOPIC'    => 'You have been notified about this topic, please login to view it.',
  59      'LOGIN_VIEWTOPIC'        => 'The board administrator requires you to be registered and logged in to view this topic.',
  60  
  61      'MAKE_ANNOUNCE'                => 'Change to Announcement',
  62      'MAKE_GLOBAL'                => 'Change to Global',
  63      'MAKE_NORMAL'                => 'Change to Standard Topic',
  64      'MAKE_STICKY'                => 'Change to Sticky',
  65      'MAX_OPTIONS_SELECT'        => 'You may select up to <strong>%d</strong> options',
  66      'MAX_OPTION_SELECT'            => 'You may select <strong>1</strong> option',
  67      'MISSING_INLINE_ATTACHMENT'    => 'The attachment <strong>%s</strong> is no longer available',
  68      'MOVE_TOPIC'                => 'Move topic',
  69  
  70      'NO_ATTACHMENT_SELECTED'=> 'You haven’t selected an attachment to download or view.',
  71      'NO_NEWER_TOPICS'        => 'There are no newer topics in this forum',
  72      'NO_OLDER_TOPICS'        => 'There are no older topics in this forum',
  73      'NO_UNREAD_POSTS'        => 'There are no new unread posts for this topic.',
  74      'NO_VOTE_OPTION'        => 'You must specify an option when voting.',
  75      'NO_VOTES'                => 'No votes',
  76  
  77      'POLL_ENDED_AT'            => 'Poll ended at %s',
  78      'POLL_RUN_TILL'            => 'Poll runs till %s',
  79      'POLL_VOTED_OPTION'        => 'You voted for this option',
  80      'PRINT_TOPIC'            => 'Print view',
  81  
  82      'QUICK_MOD'                => 'Quick-mod tools',
  83      'QUOTE'                    => 'Quote',
  84  
  85      'REPLY_TO_TOPIC'        => 'Reply to topic',
  86      'RETURN_POST'            => '%sReturn to the post%s',
  87  
  88      'SUBMIT_VOTE'            => 'Submit vote',
  89  
  90      'TOTAL_VOTES'            => 'Total votes',
  91  
  92      'UNLOCK_TOPIC'            => 'Unlock topic',
  93  
  94      'VIEW_INFO'                => 'Post details',
  95      'VIEW_NEXT_TOPIC'        => 'Next topic',
  96      'VIEW_PREVIOUS_TOPIC'    => 'Previous topic',
  97      'VIEW_RESULTS'            => 'View results',
  98      'VIEW_TOPIC_POST'        => '1 Post',
  99      'VIEW_TOPIC_POSTS'        => '%d Posts',
 100      'VIEW_UNREAD_POST'        => 'First unread post',
 101      'VISIT_WEBSITE'            => 'WWW',
 102      'VOTE_SUBMITTED'        => 'Your vote has been cast',
 103  
 104      'WROTE'                    => 'wrote',
 105  ));
 106  
 107  ?>


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