diff options
author | David M <davidmj@users.sourceforge.net> | 2006-03-25 01:03:17 +0000 |
---|---|---|
committer | David M <davidmj@users.sourceforge.net> | 2006-03-25 01:03:17 +0000 |
commit | 529aabd46d63b48041bde5d33fdb45bec63807cd (patch) | |
tree | f0b292aece290cfff83049e0d7f9a2f8af8579ae /phpBB/language/en/acp/database.php | |
parent | e8e4d92d01725c32ce40e7cd2a07e3a29afc420b (diff) | |
download | forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.gz forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.bz2 forums-529aabd46d63b48041bde5d33fdb45bec63807cd.tar.xz forums-529aabd46d63b48041bde5d33fdb45bec63807cd.zip |
- We do On-the-fly file writting for everything in backups, should speed things up
- Removed the ability to make archives for backups... Its one sql file, no need to use some heavy archive to store it...
- Made it easier to use the restore feature
- Flushed the data buffer at the end of every insert statement, this should make large tables (like posts and topics) faster to backup
- Some bug fixes :D
git-svn-id: file:///svn/phpbb/trunk@5708 89ea8834-ac86-4346-8a33-228a782c2dd0
Diffstat (limited to 'phpBB/language/en/acp/database.php')
-rw-r--r-- | phpBB/language/en/acp/database.php | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/phpBB/language/en/acp/database.php b/phpBB/language/en/acp/database.php index 8068e398b0..3f688d6d77 100644 --- a/phpBB/language/en/acp/database.php +++ b/phpBB/language/en/acp/database.php @@ -41,8 +41,11 @@ $lang = array_merge($lang, array( 'TABLE_SELECT' => 'Table Select', 'FILE_TYPE' => 'File Type', 'STORE_LOCAL' => 'Store file locally', + 'SELECT_ALL' => 'Select all', + 'DESELECT_ALL' => 'Deselect all', 'BACKUP_SUCCESS' => 'The backup file has been created successfully in the location you specified', + 'STORE_AND_DOWNLOAD' => 'Store and Download', 'ACP_RESTORE' => 'Restore', 'ACP_RESTORE_EXPLAIN' => 'This will perform a full restore of all phpBB tables from a saved file. You can <u>either</u> upload the backup file via this form or upload it manually to a location on the server. If your server supports it you may use a gzip compressed text file and it will automatically be decompressed. <b>WARNING</b> 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.', 'SELECT_FILE' => 'Select a file', |