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 |
migrator.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 $lang = array_merge($lang, array(
40 'CONFIG_NOT_EXIST' => 'The config setting "%s" unexpectedly does not exist.',
41
42 'GROUP_NOT_EXIST' => 'The group "%s" unexpectedly does not exist.',
43
44 'MIGRATION_APPLY_DEPENDENCIES' => 'Apply dependencies of %s.',
45 'MIGRATION_DATA_DONE' => 'Installed Data: %1$s; Time: %2$.2f seconds',
46 'MIGRATION_DATA_IN_PROGRESS' => 'Installing Data: %1$s; Time: %2$.2f seconds',
47 'MIGRATION_DATA_RUNNING' => 'Installing Data: %s.',
48 'MIGRATION_EFFECTIVELY_INSTALLED' => 'Migration already effectively installed (skipped): %s',
49 'MIGRATION_EXCEPTION_ERROR' => 'Something went wrong during the request and an exception was thrown. The changes made before the error occurred were reversed to the best of our abilities, but you should check the board for errors.',
50 'MIGRATION_NOT_FULFILLABLE' => 'The migration "%1$s" is not fulfillable, missing migration "%2$s".',
51 'MIGRATION_NOT_VALID' => '%s is not a valid migration.',
52 'MIGRATION_SCHEMA_DONE' => 'Installed Schema: %1$s; Time: %2$.2f seconds',
53 'MIGRATION_SCHEMA_RUNNING' => 'Installing Schema: %s.',
54
55 'MODULE_ERROR' => 'An error occurred while creating a module: %s',
56 'MODULE_INFO_FILE_NOT_EXIST' => 'A required module info file is missing: %2$s',
57 'MODULE_NOT_EXIST' => 'A required module does not exist: %s',
58
59 'PERMISSION_NOT_EXIST' => 'The permission setting "%s" unexpectedly does not exist.',
60
61 'ROLE_NOT_EXIST' => 'The permission role "%s" unexpectedly does not exist.',
62 ));
63