[ Index ]
 

Code source de PunBB 1.2.16

Accédez au Source d'autres logiciels libres

title

Body

[fermer]

/upload/lang/English/ -> common.php (source)

   1  <?php
   2  
   3  /*

   4  // Determine what locale to use

   5  switch (PHP_OS)

   6  {

   7      case 'WINNT':

   8      case 'WIN32':

   9          $locale = 'english';

  10          break;

  11  

  12      case 'FreeBSD':

  13      case 'NetBSD':

  14      case 'OpenBSD':

  15          $locale = 'en_US.US-ASCII';

  16          break;

  17  

  18      default:

  19          $locale = 'en_US';

  20          break;

  21  }

  22  

  23  // Attempt to set the locale

  24  setlocale(LC_CTYPE, $locale);

  25  */
  26  
  27  // Language definitions for frequently used strings

  28  $lang_common = array(
  29  
  30  // Text orientation and encoding

  31  'lang_direction'        =>    'ltr',    // ltr (Left-To-Right) or rtl (Right-To-Left)
  32  'lang_encoding'            =>    'iso-8859-1',
  33  'lang_multibyte'        =>    false,
  34  
  35  // Notices

  36  'Bad request'            =>    'Bad request. The link you followed is incorrect or outdated.',
  37  'No view'                =>    'You do not have permission to view these forums.',
  38  'No permission'            =>    'You do not have permission to access this page.',
  39  'Bad referrer'            =>    'Bad HTTP_REFERER. You were referred to this page from an unauthorized source. If the problem persists please make sure that \'Base URL\' is correctly set in Admin/Options and that you are visiting the forum by navigating to that URL. More information regarding the referrer check can be found in the PunBB documentation.',
  40  
  41  // Topic/forum indicators

  42  'New icon'                =>    'There are new posts',
  43  'Normal icon'            =>    '<!-- -->',
  44  'Closed icon'            =>    'This topic is closed',
  45  'Redirect icon'            =>    'Redirected forum',
  46  
  47  // Miscellaneous

  48  'Announcement'            =>    'Announcement',
  49  'Options'                =>    'Options',
  50  'Actions'                =>    'Actions',
  51  'Submit'                =>    'Submit',    // "name" of submit buttons
  52  'Ban message'            =>    'You are banned from this forum.',
  53  'Ban message 2'            =>    'The ban expires at the end of',
  54  'Ban message 3'            =>    'The administrator or moderator that banned you left the following message:',
  55  'Ban message 4'            =>    'Please direct any inquiries to the forum administrator at',
  56  'Never'                    =>    'Never',
  57  'Today'                    =>    'Today',
  58  'Yesterday'                =>    'Yesterday',
  59  'Info'                    =>    'Info',        // a common table header
  60  'Go back'                =>    'Go back',
  61  'Maintenance'            =>    'Maintenance',
  62  'Redirecting'            =>    'Redirecting',
  63  'Click redirect'        =>    'Click here if you do not want to wait any longer (or if your browser does not automatically forward you)',
  64  'on'                    =>    'on',        // as in "BBCode is on"
  65  'off'                    =>    'off',
  66  'Invalid e-mail'        =>    'The e-mail address you entered is invalid.',
  67  'required field'        =>    'is a required field in this form.',    // for javascript form validation
  68  'Last post'                =>    'Last post',
  69  'by'                    =>    'by',    // as in last post by someuser
  70  'New posts'                =>    'New&nbsp;posts',    // the link that leads to the first new post (use &nbsp; for spaces)
  71  'New posts info'        =>    'Go to the first new post in this topic.',    // the popup text for new posts links
  72  'Username'                =>    'Username',
  73  'Password'                =>    'Password',
  74  'E-mail'                =>    'E-mail',
  75  'Send e-mail'            =>    'Send e-mail',
  76  'Moderated by'            =>    'Moderated by',
  77  'Registered'            =>    'Registered',
  78  'Subject'                =>    'Subject',
  79  'Message'                =>    'Message',
  80  'Topic'                    =>    'Topic',
  81  'Forum'                    =>    'Forum',
  82  'Posts'                    =>    'Posts',
  83  'Replies'                =>    'Replies',
  84  'Author'                =>    'Author',
  85  'Pages'                    =>    'Pages',
  86  'BBCode'                =>    'BBCode',    // You probably shouldn't change this
  87  'img tag'                =>    '[img] tag',
  88  'Smilies'                =>    'Smilies',
  89  'and'                    =>    'and',
  90  'Image link'            =>    'image',    // This is displayed (i.e. <image>) instead of images when "Show images" is disabled in the profile
  91  'wrote'                    =>    'wrote',    // For [quote]'s
  92  'Code'                    =>    'Code',        // For [code]'s
  93  'Mailer'                =>    'Mailer',    // As in "MyForums Mailer" in the signature of outgoing e-mails
  94  'Important information'    =>    'Important information',
  95  'Write message legend'    =>    'Write your message and submit',
  96  
  97  // Title

  98  'Title'                    =>    'Title',
  99  'Member'                =>    'Member',    // Default title
 100  'Moderator'                =>    'Moderator',
 101  'Administrator'            =>    'Administrator',
 102  'Banned'                =>    'Banned',
 103  'Guest'                    =>    'Guest',
 104  
 105  // Stuff for include/parser.php

 106  'BBCode error'            =>    'The BBCode syntax in the message is incorrect.',
 107  'BBCode error 1'        =>    'Missing start tag for [/quote].',
 108  'BBCode error 2'        =>    'Missing end tag for [code].',
 109  'BBCode error 3'        =>    'Missing start tag for [/code].',
 110  'BBCode error 4'        =>    'Missing one or more end tags for [quote].',
 111  'BBCode error 5'        =>    'Missing one or more start tags for [/quote].',
 112  
 113  // Stuff for the navigator (top of every page)

 114  'Index'                    =>    'Index',
 115  'User list'                =>    'User list',
 116  'Rules'                    =>  'Rules',
 117  'Search'                =>  'Search',
 118  'Register'                =>  'Register',
 119  'Login'                    =>  'Login',
 120  'Not logged in'            =>  'You are not logged in.',
 121  'Profile'                =>    'Profile',
 122  'Logout'                =>    'Logout',
 123  'Logged in as'            =>    'Logged in as',
 124  'Admin'                    =>    'Administration',
 125  'Last visit'            =>    'Last visit',
 126  'Show new posts'        =>    'Show new posts since last visit',
 127  'Mark all as read'        =>    'Mark all topics as read',
 128  'Link separator'        =>    '',    // The text that separates links in the navigator
 129  
 130  // Stuff for the page footer

 131  'Board footer'            =>    'Board footer',
 132  'Search links'            =>    'Search links',
 133  'Show recent posts'        =>    'Show recent posts',
 134  'Show unanswered posts'    =>    'Show unanswered posts',
 135  'Show your posts'        =>    'Show your posts',
 136  'Show subscriptions'    =>    'Show your subscribed topics',
 137  'Jump to'                =>    'Jump to',
 138  'Go'                    =>    ' Go ',        // submit button in forum jump
 139  'Move topic'            =>  'Move topic',
 140  'Open topic'            =>  'Open topic',
 141  'Close topic'            =>  'Close topic',
 142  'Unstick topic'            =>  'Unstick topic',
 143  'Stick topic'            =>  'Stick topic',
 144  'Moderate forum'        =>    'Moderate forum',
 145  'Delete posts'            =>    'Delete multiple posts',
 146  'Debug table'            =>    'Debug information',
 147  
 148  // For extern.php RSS feed

 149  'RSS Desc Active'        =>    'The most recently active topics at',    // board_title will be appended to this string
 150  'RSS Desc New'            =>    'The newest topics at',                    // board_title will be appended to this string
 151  'Posted'                =>    'Posted'    // The date/time a topic was started
 152  
 153  );


Généré le : Sat Nov 24 22:44:38 2007 par Balluche grâce à PHPXref 0.7
  Clicky Web Analytics