Blame Identity/Models/Html/phpBB/3.0.4/language/en/acp/database.php

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

Your board should be back to the state it was when the backup was made.',
d6e8d8
d6e8d8
	'SELECT_ALL'			=> 'Select all',
d6e8d8
	'SELECT_FILE'			=> 'Select a file',
d6e8d8
	'START_BACKUP'			=> 'Start backup',
d6e8d8
	'START_RESTORE'			=> 'Start restore',
d6e8d8
	'STORE_AND_DOWNLOAD'	=> 'Store and download',
d6e8d8
	'STORE_LOCAL'			=> 'Store file locally',
d6e8d8
	'STRUCTURE_ONLY'		=> 'Structure only',
d6e8d8
d6e8d8
	'TABLE_SELECT'		=> 'Table select',
d6e8d8
	'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
d6e8d8
));
d6e8d8
d6e8d8
?>