Verzeichnisstruktur phpBB-3.1.0
- Veröffentlicht
- 27.10.2014
So funktioniert es
|
Auf das letzte Element klicken. Dies geht jeweils ein Schritt zurück |
Auf das Icon klicken, dies öffnet das Verzeichnis. Nochmal klicken schließt das Verzeichnis. |
|
(Beispiel Datei-Icons)
|
Auf das Icon klicken um den Quellcode anzuzeigen |
database.php
01 <?php
02 /**
03 *
04 * This file is part of the phpBB Forum Software package.
05 *
06 * @copyright (c) phpBB Limited <https://www.phpbb.com>
07 * @license GNU General Public License, version 2 (GPL-2.0)
08 *
09 * For full copyright and license information, please see
10 * the docs/CREDITS.txt file.
11 *
12 */
13
14 /**
15 * DO NOT CHANGE
16 */
17 if (!defined('IN_PHPBB'))
18 {
19 exit;
20 }
21
22 if (empty($lang) || !is_array($lang))
23 {
24 $lang = array();
25 }
26
27 // DEVELOPERS PLEASE NOTE
28 //
29 // All language files should use UTF-8 as their encoding and the files must not contain a BOM.
30 //
31 // Placeholders can now contain order information, e.g. instead of
32 // 'Page %s of %s' you can (and should) write 'Page %1$s of %2$s', this allows
33 // translators to re-order the output of data while ensuring it remains correct
34 //
35 // You do not need this where single placeholders are used, e.g. 'Message %d' is fine
36 // equally where a string contains only two placeholders which are used to wrap text
37 // in a url you again do not need to specify an order e.g., 'Click %sHERE%s' is fine
38
39 // Database Backup/Restore
40 $lang = array_merge($lang, array(
41 '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.',
42 '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.',
43
44 'BACKUP_DELETE' => 'The backup file has been deleted successfully.',
45 'BACKUP_INVALID' => 'The selected file to backup is invalid.',
46 'BACKUP_OPTIONS' => 'Backup options',
47 'BACKUP_SUCCESS' => 'The backup file has been created successfully.',
48 'BACKUP_TYPE' => 'Backup type',
49
50 'DATABASE' => 'Database utilities',
51 'DATA_ONLY' => 'Data only',
52 'DELETE_BACKUP' => 'Delete backup',
53 'DELETE_SELECTED_BACKUP' => 'Are you sure you want to delete the selected backup?',
54 'DESELECT_ALL' => 'Deselect all',
55 'DOWNLOAD_BACKUP' => 'Download backup',
56
57 'FILE_TYPE' => 'File type',
58 'FILE_WRITE_FAIL' => 'Unable to write file to storage folder.',
59 'FULL_BACKUP' => 'Full',
60
61 'RESTORE_FAILURE' => 'The backup file may be corrupt.',
62 'RESTORE_OPTIONS' => 'Restore options',
63 'RESTORE_SELECTED_BACKUP' => 'Are you sure you want to restore the selected backup?',
64 '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.',
65
66 'SELECT_ALL' => 'Select all',
67 'SELECT_FILE' => 'Select a file',
68 'START_BACKUP' => 'Start backup',
69 'START_RESTORE' => 'Start restore',
70 'STORE_AND_DOWNLOAD' => 'Store and download',
71 'STORE_LOCAL' => 'Store file locally',
72 'STRUCTURE_ONLY' => 'Structure only',
73
74 'TABLE_SELECT' => 'Table select',
75 'TABLE_SELECT_ERROR'=> 'You must select at least one table.',
76 ));
77