[ Index ]

PHP Cross Reference of phpBB 3.0 Beta 3

title

Body

[close]

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

   1  <?php
   2  /** 
   3  *
   4  * acp_database [English]
   5  *
   6  * @package language
   7  * @version $Id: database.php,v 1.12 2006/10/02 15:10:29 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  // Placeholders can now contain order information, e.g. instead of
  24  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  25  // translators to re-order the output of data while ensuring it remains correct
  26  //
  27  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  28  // equally where a string contains only two placeholders which are used to wrap text
  29  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  30  
  31  // Database Backup/Restore
  32  $lang = array_merge($lang, array(
  33      'ACP_BACKUP_EXPLAIN'    => 'Here you can backup all your phpBB related data. You may store the resulting archive in your <samp>store/</samp> folder or download it directly. Depending on your server configuration you be able to compress the file in a number of formats.',
  34      'ACP_RESTORE_EXPLAIN'    => 'This will perform a full restore of all phpBB tables from a saved file. If your server supports it you may use a gzip or bzip2 compressed text file and it will automatically be decompressed. <strong>WARNING</strong> This will overwrite any existing data. The restore may take a long time to process please do not move from this page till it is complete.',
  35  
  36      'BACKUP_DELETE'        => 'The backup file has been deleted successfully.',
  37      'BACKUP_INVALID'    => 'The selected file to backup is invalid.',
  38      'BACKUP_OPTIONS'    => 'Backup options',
  39      'BACKUP_SUCCESS'    => 'The backup file has been created successfully.',
  40      'BACKUP_TYPE'        => 'Backup type',
  41  
  42      'DATABASE'            => 'Database utilities',
  43      'DATA_ONLY'            => 'Data only',
  44      'DELETE_BACKUP'        => 'Delete backup',
  45      'DESELECT_ALL'        => 'Deselect all',
  46      'DOWNLOAD_BACKUP'    => 'Download backup',
  47  
  48      'FILE_TYPE'            => 'File type',
  49      'FULL_BACKUP'        => 'Full',
  50  
  51      'RESTORE_OPTIONS'        => 'Restore options',
  52      'RESTORE_SUCCESS'        => 'The database has been successfully restored.<br /><br />Your board should be back to the state it was when the backup was made.',
  53  
  54      'SELECT_ALL'            => 'Select all',
  55      'SELECT_FILE'            => 'Select a file',
  56      'START_BACKUP'            => 'Start backup',
  57      'START_RESTORE'            => 'Start restore',
  58      'STORE_AND_DOWNLOAD'    => 'Store and download',
  59      'STORE_LOCAL'            => 'Store file locally',
  60      'STRUCTURE_ONLY'        => 'Structure only',
  61  
  62      'TABLE_SELECT'        => 'Table select',
  63  ));
  64  
  65  ?>


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