1 | <?php
|
---|
2 | /**
|
---|
3 | *
|
---|
4 | * acp_database [English]
|
---|
5 | *
|
---|
6 | * @package language
|
---|
7 | * @version $Id$
|
---|
8 | * @copyright (c) 2005 phpBB Group
|
---|
9 | * @license http://opensource.org/licenses/gpl-license.php GNU Public License
|
---|
10 | *
|
---|
11 | */
|
---|
12 |
|
---|
13 | /**
|
---|
14 | * DO NOT CHANGE
|
---|
15 | */
|
---|
16 | if (!defined('IN_PHPBB'))
|
---|
17 | {
|
---|
18 | exit;
|
---|
19 | }
|
---|
20 |
|
---|
21 | if (empty($lang) || !is_array($lang))
|
---|
22 | {
|
---|
23 | $lang = array();
|
---|
24 | }
|
---|
25 |
|
---|
26 | // DEVELOPERS PLEASE NOTE
|
---|
27 | //
|
---|
28 | // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
|
---|
29 | //
|
---|
30 | // Placeholders can now contain order information, e.g. instead of
|
---|
31 | // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
|
---|
32 | // translators to re-order the output of data while ensuring it remains correct
|
---|
33 | //
|
---|
34 | // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
|
---|
35 | // equally where a string contains only two placeholders which are used to wrap text
|
---|
36 | // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
|
---|
37 |
|
---|
38 | // Database Backup/Restore
|
---|
39 | $lang = array_merge($lang, array(
|
---|
40 | '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.',
|
---|
41 | '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.',
|
---|
42 |
|
---|
43 | 'BACKUP_DELETE' => 'The backup file has been deleted successfully.',
|
---|
44 | 'BACKUP_INVALID' => 'The selected file to backup is invalid.',
|
---|
45 | 'BACKUP_OPTIONS' => 'Backup options',
|
---|
46 | 'BACKUP_SUCCESS' => 'The backup file has been created successfully.',
|
---|
47 | 'BACKUP_TYPE' => 'Backup type',
|
---|
48 |
|
---|
49 | 'DATABASE' => 'Database utilities',
|
---|
50 | 'DATA_ONLY' => 'Data only',
|
---|
51 | 'DELETE_BACKUP' => 'Delete backup',
|
---|
52 | 'DELETE_SELECTED_BACKUP' => 'Are you sure you want to delete the selected backup?',
|
---|
53 | 'DESELECT_ALL' => 'Deselect all',
|
---|
54 | 'DOWNLOAD_BACKUP' => 'Download backup',
|
---|
55 |
|
---|
56 | 'FILE_TYPE' => 'File type',
|
---|
57 | 'FILE_WRITE_FAIL' => 'Unable to write file to storage folder.',
|
---|
58 | 'FULL_BACKUP' => 'Full',
|
---|
59 |
|
---|
60 | 'RESTORE_FAILURE' => 'The backup file may be corrupt.',
|
---|
61 | 'RESTORE_OPTIONS' => 'Restore options',
|
---|
62 | '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.',
|
---|
63 |
|
---|
64 | 'SELECT_ALL' => 'Select all',
|
---|
65 | 'SELECT_FILE' => 'Select a file',
|
---|
66 | 'START_BACKUP' => 'Start backup',
|
---|
67 | 'START_RESTORE' => 'Start restore',
|
---|
68 | 'STORE_AND_DOWNLOAD' => 'Store and download',
|
---|
69 | 'STORE_LOCAL' => 'Store file locally',
|
---|
70 | 'STRUCTURE_ONLY' => 'Structure only',
|
---|
71 |
|
---|
72 | 'TABLE_SELECT' => 'Table select',
|
---|
73 | 'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
|
---|
74 | ));
|
---|
75 |
|
---|
76 | ?>
|
---|