Blame Extras/phpBB/3.0.4/language/en/acp/database.php

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

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