Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 49 |
n/a |
0 / 0 |
CRAP | n/a |
0 / 0 |
||
| 1 | <?php |
| 2 | /** |
| 3 | * |
| 4 | * This file is part of the phpBB Forum Software package. |
| 5 | * |
| 6 | * @copyright (c) phpBB Limited <https://www.phpbb.com> |
| 7 | * @license GNU General Public License, version 2 (GPL-2.0) |
| 8 | * |
| 9 | * 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 | 'INVALID_STYLE_MESSAGE' => 'The directory <strong><i>%1$s</i></strong> does not contain a valid style.', |
| 58 | |
| 59 | 'NO_MATCHING_STYLES_FOUND' => 'No styles match your query.', |
| 60 | 'NO_UNINSTALLED_STYLE' => 'No uninstalled styles detected.', |
| 61 | |
| 62 | 'PURGED_CACHE' => 'Cache was purged.', |
| 63 | |
| 64 | 'REQUIRES_STYLE' => 'This style requires the style "%s" to be installed.', |
| 65 | |
| 66 | 'STYLE_ACTIVATE' => 'Activate', |
| 67 | 'STYLE_ACTIVE' => 'Active', |
| 68 | 'STYLE_DEACTIVATE' => 'Deactivate', |
| 69 | 'STYLE_DEFAULT' => 'Make default style', |
| 70 | 'STYLE_DEFAULT_CHANGE_INACTIVE' => 'You must activate style before making it default style.', |
| 71 | 'STYLE_ERR_INVALID_PARENT' => 'Invalid parent style.', |
| 72 | 'STYLE_ERR_NAME_EXIST' => 'A style with that name already exists.', |
| 73 | 'STYLE_ERR_STYLE_NAME' => 'You must supply a name for this style.', |
| 74 | 'STYLE_INSTALLED' => 'Style "%s" has been installed.', |
| 75 | 'STYLE_INSTALLED_RETURN_INSTALLED_STYLES' => 'Return to installed styles list', |
| 76 | 'STYLE_INSTALLED_RETURN_UNINSTALLED_STYLES' => 'Install more styles', |
| 77 | 'STYLE_NAME' => 'Style name', |
| 78 | 'STYLE_NAME_RESERVED' => 'Style "%s" can not be installed, because the name is reserved.', |
| 79 | 'STYLE_NOT_INSTALLED' => 'Style "%s" was not installed.', |
| 80 | 'STYLE_PATH' => 'Style path', |
| 81 | 'STYLE_UNINSTALL' => 'Uninstall', |
| 82 | 'STYLE_UNINSTALL_DEPENDENT' => 'Style "%s" cannot be uninstalled because it has one or more child styles.', |
| 83 | 'STYLE_UNINSTALLED' => 'Style "%s" uninstalled successfully.', |
| 84 | 'STYLE_PHPBB_VERSION' => 'phpBB Version', |
| 85 | 'STYLE_USED_BY' => 'Used by (including robots)', |
| 86 | 'STYLE_VERSION' => 'Style version', |
| 87 | |
| 88 | 'UNINSTALL_PROSILVER' => 'You cannot uninstall the style “prosilver”.', |
| 89 | 'UNINSTALL_DEFAULT' => 'You cannot uninstall the default style.', |
| 90 | |
| 91 | 'BROWSE_STYLES_DATABASE' => 'Browse styles database', |
| 92 | ]); |