|
|
ef5584 |
|
|
|
ef5584 |
/**
|
|
|
ef5584 |
*
|
|
|
ef5584 |
* acp_database [English]
|
|
|
ef5584 |
*
|
|
|
ef5584 |
* @package language
|
|
|
ef5584 |
* @version $Id: database.php 8479 2008-03-29 00:22:48Z naderman $
|
|
|
ef5584 |
* @copyright (c) 2005 phpBB Group
|
|
|
ef5584 |
* @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
|
|
ef5584 |
*
|
|
|
ef5584 |
*/
|
|
|
ef5584 |
|
|
|
ef5584 |
/**
|
|
|
ef5584 |
* DO NOT CHANGE
|
|
|
ef5584 |
*/
|
|
|
ef5584 |
if (!defined('IN_PHPBB'))
|
|
|
ef5584 |
{
|
|
|
ef5584 |
exit;
|
|
|
ef5584 |
}
|
|
|
ef5584 |
|
|
|
ef5584 |
if (empty($lang) || !is_array($lang))
|
|
|
ef5584 |
{
|
|
|
ef5584 |
$lang = array();
|
|
|
ef5584 |
}
|
|
|
ef5584 |
|
|
|
ef5584 |
// DEVELOPERS PLEASE NOTE
|
|
|
ef5584 |
//
|
|
|
ef5584 |
// All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
|
|
ef5584 |
//
|
|
|
ef5584 |
// Placeholders can now contain order information, e.g. instead of
|
|
|
ef5584 |
// 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
|
|
ef5584 |
// translators to re-order the output of data while ensuring it remains correct
|
|
|
ef5584 |
//
|
|
|
ef5584 |
// You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
|
|
ef5584 |
// equally where a string contains only two placeholders which are used to wrap text
|
|
|
ef5584 |
// in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
|
|
ef5584 |
|
|
|
ef5584 |
// Database Backup/Restore
|
|
|
ef5584 |
$lang = array_merge($lang, array(
|
|
|
ef5584 |
'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 may be able to compress the file in a number of formats.',
|
|
|
ef5584 |
'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. WARNING 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.',
|
|
|
ef5584 |
|
|
|
ef5584 |
'BACKUP_DELETE' => 'The backup file has been deleted successfully.',
|
|
|
ef5584 |
'BACKUP_INVALID' => 'The selected file to backup is invalid.',
|
|
|
ef5584 |
'BACKUP_OPTIONS' => 'Backup options',
|
|
|
ef5584 |
'BACKUP_SUCCESS' => 'The backup file has been created successfully.',
|
|
|
ef5584 |
'BACKUP_TYPE' => 'Backup type',
|
|
|
ef5584 |
|
|
|
ef5584 |
'DATABASE' => 'Database utilities',
|
|
|
ef5584 |
'DATA_ONLY' => 'Data only',
|
|
|
ef5584 |
'DELETE_BACKUP' => 'Delete backup',
|
|
|
ef5584 |
'DELETE_SELECTED_BACKUP' => 'Are you sure you want to delete the selected backup?',
|
|
|
ef5584 |
'DESELECT_ALL' => 'Deselect all',
|
|
|
ef5584 |
'DOWNLOAD_BACKUP' => 'Download backup',
|
|
|
ef5584 |
|
|
|
ef5584 |
'FILE_TYPE' => 'File type',
|
|
|
ef5584 |
'FULL_BACKUP' => 'Full',
|
|
|
ef5584 |
|
|
|
ef5584 |
'RESTORE_FAILURE' => 'The backup file may be corrupt.',
|
|
|
ef5584 |
'RESTORE_OPTIONS' => 'Restore options',
|
|
|
ef5584 |
'RESTORE_SUCCESS' => 'The database has been successfully restored.
Your board should be back to the state it was when the backup was made.',
|
|
|
ef5584 |
|
|
|
ef5584 |
'SELECT_ALL' => 'Select all',
|
|
|
ef5584 |
'SELECT_FILE' => 'Select a file',
|
|
|
ef5584 |
'START_BACKUP' => 'Start backup',
|
|
|
ef5584 |
'START_RESTORE' => 'Start restore',
|
|
|
ef5584 |
'STORE_AND_DOWNLOAD' => 'Store and download',
|
|
|
ef5584 |
'STORE_LOCAL' => 'Store file locally',
|
|
|
ef5584 |
'STRUCTURE_ONLY' => 'Structure only',
|
|
|
ef5584 |
|
|
|
ef5584 |
'TABLE_SELECT' => 'Table select',
|
|
|
ef5584 |
'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
|
|
|
ef5584 |
));
|
|
|
ef5584 |
|
|
|
ef5584 |
?>
|