Verzeichnisstruktur phpBB-3.3.15
- Veröffentlicht
- 28.08.2024
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 |
styles.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 = [];
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, [
40 'ACP_STYLES_EXPLAIN' => 'Here you can manage the styles available on your board.<br>Please note you cannot uninstall the “<strong>prosilver</strong>” style as it is phpBB’s default and primary parent style.',
41
42 'CANNOT_BE_INSTALLED' => 'Cannot be installed',
43 'CONFIRM_UNINSTALL_STYLES' => 'Are you sure you wish to uninstall selected styles?',
44 'COPYRIGHT' => 'Copyright',
45
46 'DEACTIVATE_DEFAULT' => 'You cannot deactivate the default style.',
47 'DELETE_FROM_FS' => 'Delete from filesystem',
48 'DELETE_STYLE_FILES_FAILED' => 'Error deleting files for style "%s".',
49 'DELETE_STYLE_FILES_SUCCESS' => 'Files for style "%s" have been deleted.',
50 'DETAILS' => 'Details',
51
52 'INHERITING_FROM' => 'Inherits from',
53 'INSTALL_STYLE' => 'Install style',
54 'INSTALL_STYLES' => 'Install styles',
55 'INSTALL_STYLES_EXPLAIN' => 'Here you can install new styles.<br>If you cannot find a specific style in list below, check to make sure style is already installed. If it is not installed, check if it was uploaded correctly.',
56 'INVALID_STYLE_ID' => 'Invalid style ID.',
57
58 'NO_MATCHING_STYLES_FOUND' => 'No styles match your query.',
59 'NO_UNINSTALLED_STYLE' => 'No uninstalled styles detected.',
60
61 'PURGED_CACHE' => 'Cache was purged.',
62
63 'REQUIRES_STYLE' => 'This style requires the style "%s" to be installed.',
64
65 'STYLE_ACTIVATE' => 'Activate',
66 'STYLE_ACTIVE' => 'Active',
67 'STYLE_DEACTIVATE' => 'Deactivate',
68 'STYLE_DEFAULT' => 'Make default style',
69 'STYLE_DEFAULT_CHANGE_INACTIVE' => 'You must activate style before making it default style.',
70 'STYLE_ERR_INVALID_PARENT' => 'Invalid parent style.',
71 'STYLE_ERR_NAME_EXIST' => 'A style with that name already exists.',
72 'STYLE_ERR_STYLE_NAME' => 'You must supply a name for this style.',
73 'STYLE_INSTALLED' => 'Style "%s" has been installed.',
74 'STYLE_INSTALLED_RETURN_INSTALLED_STYLES' => 'Return to installed styles list',
75 'STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES' => 'Install more styles',
76 'STYLE_NAME' => 'Style name',
77 'STYLE_NAME_RESERVED' => 'Style "%s" can not be installed, because the name is reserved.',
78 'STYLE_NOT_INSTALLED' => 'Style "%s" was not installed.',
79 'STYLE_PATH' => 'Style path',
80 'STYLE_UNINSTALL' => 'Uninstall',
81 'STYLE_UNINSTALL_DEPENDENT' => 'Style "%s" cannot be uninstalled because it has one or more child styles.',
82 'STYLE_UNINSTALLED' => 'Style "%s" uninstalled successfully.',
83 'STYLE_PHPBB_VERSION' => 'phpBB Version',
84 'STYLE_USED_BY' => 'Used by (including robots)',
85 'STYLE_VERSION' => 'Style version',
86
87 'UNINSTALL_PROSILVER' => 'You cannot uninstall the style “prosilver”.',
88 'UNINSTALL_DEFAULT' => 'You cannot uninstall the default style.',
89
90 'BROWSE_STYLES_DATABASE' => 'Browse styles database',
91 ]);
92