[ Index ]

PHP Cross Reference of Unnamed Project

title

Body

[close]

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

   1  <?php
   2  /**
   3  *
   4  * acp_language [English]
   5  *
   6  * @package language
   7  * @version $Id$
   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 (!defined('IN_PHPBB'))
  17  {
  18      exit;
  19  }
  20  
  21  if (empty($lang) || !is_array($lang))
  22  {
  23      $lang = array();
  24  }
  25  
  26  // DEVELOPERS PLEASE NOTE
  27  //
  28  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  29  //
  30  // Placeholders can now contain order information, e.g. instead of
  31  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  32  // translators to re-order the output of data while ensuring it remains correct
  33  //
  34  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  35  // equally where a string contains only two placeholders which are used to wrap text
  36  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  37  
  38  $lang = array_merge($lang, array(
  39      'ACP_FILES'                        => 'Admin language files',
  40      'ACP_LANGUAGE_PACKS_EXPLAIN'    => 'Here you are able to install/remove language packs. The default language pack is marked with an asterisk (*).',
  41  
  42      'EMAIL_FILES'            => 'E-mail templates',
  43  
  44      'FILE_CONTENTS'                => 'File contents',
  45      'FILE_FROM_STORAGE'            => 'File from storage folder',
  46  
  47      'HELP_FILES'                => 'Help files',
  48  
  49      'INSTALLED_LANGUAGE_PACKS'    => 'Installed language packs',
  50      'INVALID_LANGUAGE_PACK'        => 'The selected language pack seems to be not valid. Please verify the language pack and upload it again if necessary.',
  51      'INVALID_UPLOAD_METHOD'        => 'The selected upload method is not valid, please choose a different method.',
  52  
  53      'LANGUAGE_DETAILS_UPDATED'            => 'Language details successfully updated.',
  54      'LANGUAGE_ENTRIES'                    => 'Language entries',
  55      '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 separate 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).',
  56      'LANGUAGE_FILES'                    => 'Language files',
  57      'LANGUAGE_KEY'                        => 'Language key',
  58      'LANGUAGE_PACK_ALREADY_INSTALLED'    => 'This language pack is already installed.',
  59      'LANGUAGE_PACK_DELETED'                => 'The language pack <strong>%s</strong> has been removed successfully. All users using this language have been reset to the boards default language.',
  60      'LANGUAGE_PACK_DETAILS'                => 'Language pack details',
  61      'LANGUAGE_PACK_INSTALLED'            => 'The language pack <strong>%s</strong> has been successfully installed.',
  62      'LANGUAGE_PACK_CPF_UPDATE'            => 'The custom profile fields’ language strings were copied from the default language. Please change them if necessary.',
  63      'LANGUAGE_PACK_ISO'                    => 'ISO',
  64      'LANGUAGE_PACK_LOCALNAME'            => 'Local name',
  65      'LANGUAGE_PACK_NAME'                => 'Name',
  66      'LANGUAGE_PACK_NOT_EXIST'            => 'The selected language pack does not exist.',
  67      'LANGUAGE_PACK_USED_BY'                => 'Used by (including robots)',
  68      'LANGUAGE_VARIABLE'                    => 'Language variable',
  69      'LANG_AUTHOR'                        => 'Language pack author',
  70      'LANG_ENGLISH_NAME'                    => 'English name',
  71      'LANG_ISO_CODE'                        => 'ISO code',
  72      'LANG_LOCAL_NAME'                    => 'Local name',
  73  
  74      'MISSING_LANGUAGE_FILE'        => 'Missing language file: <strong style="color:red">%s</strong>',
  75      'MISSING_LANG_VARIABLES'    => 'Missing language variables',
  76      'MODS_FILES'                => 'MODs language files',
  77  
  78      'NO_FILE_SELECTED'                => 'You haven’t specified a language file.',
  79      'NO_LANG_ID'                    => 'You haven’t specified a language pack.',
  80      '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.',
  81      'NO_UNINSTALLED_LANGUAGE_PACKS'    => 'No uninstalled language packs',
  82  
  83      'REMOVE_FROM_STORAGE_FOLDER'        => 'Remove from storage folder',
  84  
  85      'SELECT_DOWNLOAD_FORMAT'    => 'Select download format',
  86      'SUBMIT_AND_DOWNLOAD'        => 'Submit and download file',
  87      'SUBMIT_AND_UPLOAD'            => 'Submit and upload file',
  88  
  89      'THOSE_MISSING_LANG_FILES'            => 'The following language files are missing from the %s language folder',
  90      'THOSE_MISSING_LANG_VARIABLES'        => 'The following language variables are missing from the <strong>%s</strong> language pack',
  91  
  92      'UNINSTALLED_LANGUAGE_PACKS'    => 'Uninstalled language packs',
  93  
  94      'UNABLE_TO_WRITE_FILE'        => 'The file could not be written to %s.',
  95      'UPLOAD_COMPLETED'            => 'The upload was completed successfully.',
  96      'UPLOAD_FAILED'                => 'The upload failed for unknown reasons. You may need to replace the relevant file manually.',
  97      'UPLOAD_METHOD'                => 'Upload method',
  98      'UPLOAD_SETTINGS'            => 'Upload settings',
  99  
 100      'WRONG_LANGUAGE_FILE'        => 'Selected language file is invalid.',
 101  ));
 102  
 103  ?>


Generated: Wed Oct 2 15:03:47 2013 Cross-referenced by PHPXref 0.7.1