Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 37 |
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 = 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_FILES' => 'Admin language files', |
| 41 | 'ACP_LANGUAGE_PACKS_EXPLAIN' => 'Here you are able to install/remove language packs. The default language pack is marked with an asterisk (*).', |
| 42 | |
| 43 | 'DELETE_LANGUAGE_CONFIRM' => 'Are you sure you wish to delete “%s”?', |
| 44 | |
| 45 | 'INSTALLED_LANGUAGE_PACKS' => 'Installed language packs', |
| 46 | |
| 47 | 'LANGUAGE_DETAILS_UPDATED' => 'Language details successfully updated.', |
| 48 | 'LANGUAGE_PACK_ALREADY_INSTALLED' => 'This language pack is already installed.', |
| 49 | 'LANGUAGE_PACK_DELETED' => 'The language pack “%s” has been removed successfully. All users using this language have been reset to the board’s default language.', |
| 50 | 'LANGUAGE_PACK_DETAILS' => 'Language pack details', |
| 51 | 'LANGUAGE_PACK_INSTALLED' => 'The language pack “%s” has been successfully installed.', |
| 52 | 'LANGUAGE_PACK_CPF_UPDATE' => 'The custom profile fields’ language strings were copied from the default language. Please change them if necessary.', |
| 53 | 'LANGUAGE_PACK_ISO' => 'ISO', |
| 54 | 'LANGUAGE_PACK_LOCALNAME' => 'Local name', |
| 55 | 'LANGUAGE_PACK_NAME' => 'Name', |
| 56 | 'LANGUAGE_PACK_NOT_EXIST' => 'The selected language pack does not exist.', |
| 57 | 'LANGUAGE_PACK_USED_BY' => 'Used by (including robots)', |
| 58 | 'LANGUAGE_VARIABLE' => 'Language variable', |
| 59 | 'LANG_AUTHOR' => 'Language pack author', |
| 60 | 'LANG_ENGLISH_NAME' => 'English name', |
| 61 | 'LANG_ISO_CODE' => 'ISO code', |
| 62 | 'LANG_LOCAL_NAME' => 'Local name', |
| 63 | 'LANG_VERSION' => 'Language version', |
| 64 | |
| 65 | 'MISSING_LANG_FILES' => 'Missing language files', |
| 66 | 'MISSING_LANG_VARIABLES' => 'Missing language variables', |
| 67 | |
| 68 | 'NO_FILE_SELECTED' => 'You haven’t specified a language file.', |
| 69 | 'NO_LANG_ID' => 'You haven’t specified a language pack.', |
| 70 | 'NO_REMOVE_DEFAULT_LANG' => 'You are not able to remove the default language pack.<br />If you want to remove this language pack, change your board’s default language first.', |
| 71 | 'NO_UNINSTALLED_LANGUAGE_PACKS' => 'No uninstalled language packs', |
| 72 | |
| 73 | 'THOSE_MISSING_LANG_FILES' => 'The following language files are missing from the “%s” language folder', |
| 74 | 'THOSE_MISSING_LANG_VARIABLES' => 'The following language variables are missing from the “%s” language pack', |
| 75 | |
| 76 | 'UNINSTALLED_LANGUAGE_PACKS' => 'Uninstalled language packs', |
| 77 | |
| 78 | 'BROWSE_LANGUAGE_PACKS_DATABASE' => 'Browse language packs database', |
| 79 | )); |