[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

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

   1  <?php
   2  /** 
   3  *
   4  * acp_language [English]
   5  *
   6  * @package language
   7  * @version $Id: language.php,v 1.8 2006/10/08 11:25:20 acydburn 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      'ACP_FILES'                        => 'Admin language files',
  35      'ACP_LANGUAGE_PACKS_EXPLAIN'    => 'Here you are able to install/remove language packs',
  36  
  37      'EMAIL_FILES'            => 'Email templates',
  38  
  39      'FILE_CONTENTS'                => 'File contents',
  40      'FILE_FROM_STORAGE'            => 'File from storage folder',
  41  
  42      'HELP_FILES'                => 'Help files',
  43  
  44      'INSTALLED_LANGUAGE_PACKS'    => 'Installed language packs',
  45      'INVALID_LANGUAGE_PACK'        => 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.',
  46      'INVALID_UPLOAD_METHOD'        => 'The selected upload method is not valid, please choose a different method.',
  47  
  48      'LANGUAGE_DETAILS_UPDATED'            => 'Language details successfully updated.',
  49      'LANGUAGE_ENTRIES'                    => 'Language Entries',
  50      'LANGUAGE_ENTRIES_EXPLAIN'            => 'Here you are able to change existing language pack entries or not already translated ones.<br /><strong>Note:</strong> Once you changed a language file, the changes will be stored within a seperate folder for you to download. The changes will not be seen by your users until you replace the original language files at your webspace (by uploading them).',
  51      'LANGUAGE_FILES'                    => 'Language files',
  52      'LANGUAGE_KEY'                        => 'Language key',
  53      'LANGUAGE_PACK_ALREADY_INSTALLED'    => 'This language pack is already installed.',
  54      'LANGUAGE_PACK_DELETED'                => 'The language pack <strong>%s</strong> has been removed successfully. All users using this language have been resetted to the boards default language.',
  55      'LANGUAGE_PACK_DETAILS'                => 'Language pack details',
  56      'LANGUAGE_PACK_INSTALLED'            => 'The language pack <strong>%s</strong> has been successfully installed.',
  57      'LANGUAGE_PACK_ISO'                    => 'ISO',
  58      'LANGUAGE_PACK_LOCALNAME'            => 'Local name',
  59      'LANGUAGE_PACK_NAME'                => 'Name',
  60      'LANGUAGE_PACK_NOT_EXIST'            => 'The selected language pack does not exist.',
  61      'LANGUAGE_PACK_USED_BY'                => 'Used by',
  62      'LANGUAGE_VARIABLE'                    => 'Language Variable',
  63      'LANG_AUTHOR'                        => 'Language Pack Author',
  64      'LANG_ENGLISH_NAME'                    => 'English name',
  65      'LANG_ISO_CODE'                        => 'ISO Code',
  66      'LANG_LOCAL_NAME'                    => 'Local name',
  67  
  68      'MISSING_LANGUAGE_FILE'        => 'Missing Language File: <strong style="color:red">%s</strong>',
  69      'MISSING_LANG_VARIABLES'    => 'Missing language variables',
  70      'MODS_FILES'                => 'MODs language files',
  71  
  72      'NO_FILE_SELECTED'                => 'You haven’t specified a language file.',
  73      'NO_LANG_ID'                    => 'You haven’t specified a language pack.',
  74      'NO_REMOVE_DEFAULT_LANG'        => 'You are not able to remove the default language pack.<br />If you want to remove this language pack, change your boards default language first.',
  75      'NO_UNINSTALLED_LANGUAGE_PACKS'    => 'No uninstalled language packs',
  76  
  77      'REMOVE_FROM_STORAGE_FOLDER'        => 'Remove from storage folder',
  78  
  79      'SELECT_DOWNLOAD_FORMAT'    => 'Select download format',
  80      'SUBMIT_AND_DOWNLOAD'        => 'Submit and download file',
  81      'SUBMIT_AND_UPLOAD'            => 'Submit and upload file',
  82  
  83      'THOSE_MISSING_LANG_FILES'            => 'The following language files are missing from the %s language folder',
  84      'THOSE_MISSING_LANG_VARIABLES'        => 'The following language variables are missing from the <strong>%s</strong> language pack',
  85  
  86      'UNINSTALLED_LANGUAGE_PACKS'    => 'Uninstalled language packs',
  87  
  88      'UNABLE_TO_WRITE_FILE'        => 'The file could not be written to %s.',
  89      'UPLOAD_COMPLETED'            => 'The upload was completed successfully.',
  90      'UPLOAD_METHOD'                => 'Upload method',
  91      'UPLOAD_SETTINGS'            => 'Upload settings',
  92  
  93      'WRONG_LANGUAGE_FILE'        => 'Selected language file is invalid.',
  94  ));
  95  
  96  ?>


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