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 |
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 = 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 'ACP_STYLES_EXPLAIN' => 'Here you can manage the available styles on your board. You may alter existing styles, delete, deactivate, reactivate, install new ones. You can also see what a style will look like using the preview function. Also listed is the total user count for each style, note that overriding user styles will not be reflected here.',
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_NOT_INSTALLED' => 'Style "%s" was not installed.',
78 'STYLE_PATH' => 'Style path',
79 'STYLE_UNINSTALL' => 'Uninstall',
80 'STYLE_UNINSTALL_DEPENDENT' => 'Style "%s" cannot be uninstalled because it has one or more child styles.',
81 'STYLE_UNINSTALLED' => 'Style "%s" uninstalled successfully.',
82 'STYLE_USED_BY' => 'Used by (including robots)',
83
84 'UNINSTALL_DEFAULT' => 'You cannot uninstall the default style.',
85 ));
86