[ Index ]

PHP Cross Reference of phpBB-3.3.14-deutsch

title

Body

[close]

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

   1  <?php
   2  /**
   3  *
   4  * This file is part of the phpBB Forum Software package.
   5  *
   6  * @copyright (c) phpBB Limited <https://www.phpbb.com>
   7  * @license GNU General Public License, version 2 (GPL-2.0)
   8  *
   9  * For full copyright and license information, please see
  10  * the docs/CREDITS.txt file.
  11  *
  12  */
  13  
  14  /**
  15  * DO NOT CHANGE
  16  */
  17  if (!defined('IN_PHPBB'))
  18  {
  19      exit;
  20  }
  21  
  22  if (empty($lang) || !is_array($lang))
  23  {
  24      $lang = array();
  25  }
  26  
  27  // DEVELOPERS PLEASE NOTE
  28  //
  29  // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
  30  //
  31  // Placeholders can now contain order information, e.g. instead of
  32  // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
  33  // translators to re-order the output of data while ensuring it remains correct
  34  //
  35  // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
  36  // equally where a string contains only two placeholders which are used to wrap text
  37  // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
  38  
  39  // Database Backup/Restore
  40  $lang = array_merge($lang, array(
  41      'ACP_BACKUP_EXPLAIN'    => 'Here you can backup all your phpBB related data. The resulting archive will be stored in your <samp>store/</samp> folder. Depending on your server configuration you may be able to compress the file in a number of formats.',
  42      '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. Backups are stored in the <samp>store/</samp> folder and are assumed to be generated by phpBB’s backup functionality. Restoring backups that were not created by the built in system may or may not work.',
  43  
  44      'BACKUP_DELETE'            => 'The backup file has been deleted successfully.',
  45      'BACKUP_INVALID'        => 'The selected file to backup is invalid.',
  46      'BACKUP_NOT_SUPPORTED'    => 'The selected backup is not supported',
  47      'BACKUP_OPTIONS'        => 'Backup options',
  48      'BACKUP_SUCCESS'        => 'The backup file has been created successfully.',
  49      'BACKUP_TYPE'            => 'Backup type',
  50  
  51      'DATABASE'            => 'Database utilities',
  52      'DATA_ONLY'            => 'Data only',
  53      'DELETE_BACKUP'        => 'Delete backup',
  54      'DELETE_SELECTED_BACKUP'    => 'Are you sure you want to delete the selected backup?',
  55      'DESELECT_ALL'        => 'Deselect all',
  56      'DOWNLOAD_BACKUP'    => 'Download backup',
  57  
  58      'FILE_TYPE'            => 'File type',
  59      'FILE_WRITE_FAIL'    => 'Unable to write file to storage folder.',
  60      'FULL_BACKUP'        => 'Full',
  61  
  62      'RESTORE_FAILURE'        => 'The backup file may be corrupt.',
  63      'RESTORE_OPTIONS'        => 'Restore options',
  64      'RESTORE_SELECTED_BACKUP'    => 'Are you sure you want to restore the selected backup?',
  65      '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.',
  66  
  67      'SELECT_ALL'            => 'Select all',
  68      'SELECT_FILE'            => 'Select a file',
  69      'START_BACKUP'            => 'Start backup',
  70      'START_RESTORE'            => 'Start restore',
  71      'STORE_AND_DOWNLOAD'    => 'Store and download',
  72      'STORE_LOCAL'            => 'Store file locally',
  73  
  74      'TABLE_SELECT'        => 'Table select',
  75      'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
  76  ));


Generated: Mon Nov 25 19:05:08 2024 Cross-referenced by PHPXref 0.7.1