Code Coverage |
||||||||||
Lines |
Functions and Methods |
Classes and Traits |
||||||||
| Total | |
0.00% |
0 / 36 |
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, [ |
| 40 | |
| 41 | // Template |
| 42 | 'STORAGE_TITLE' => 'Storage Settings', |
| 43 | 'STORAGE_TITLE_EXPLAIN' => 'Change storage providers for the file storage types of phpBB. Choose local or remote providers to store files added to or created by phpBB.', |
| 44 | 'STORAGE_SELECT' => 'Select storage', |
| 45 | 'STORAGE_SELECT_DESC' => 'Select a storage from the list.', |
| 46 | 'STORAGE_NAME' => 'Storage name', |
| 47 | 'STORAGE_NUM_FILES' => 'Number of files', |
| 48 | 'STORAGE_SIZE' => 'Size', |
| 49 | 'STORAGE_FREE' => 'Available space', |
| 50 | 'STORAGE_UNKNOWN' => 'Unknown', |
| 51 | 'STORAGE_UPDATE_TYPE' => 'Update type', |
| 52 | 'STORAGE_UPDATE_TYPE_CONFIG' => 'Update configuration only', |
| 53 | 'STORAGE_UPDATE_TYPE_COPY' => 'Update configuration and copy files', |
| 54 | 'STORAGE_UPDATE_TYPE_MOVE' => 'Update configuration and move files', |
| 55 | |
| 56 | // Template progress bar |
| 57 | 'STORAGE_UPDATE_IN_PROGRESS' => 'Storage update in progress', |
| 58 | 'STORAGE_UPDATE_IN_PROGRESS_EXPLAIN' => 'Files are being moved between storages. This can take some minutes.', |
| 59 | |
| 60 | // Storage names |
| 61 | 'STORAGE_ATTACHMENT_TITLE' => 'Attachments storage', |
| 62 | 'STORAGE_AVATAR_TITLE' => 'Avatars storage', |
| 63 | 'STORAGE_BACKUP_TITLE' => 'Backup storage', |
| 64 | |
| 65 | // Local adapter |
| 66 | 'STORAGE_ADAPTER_LOCAL_NAME' => 'Local', |
| 67 | 'STORAGE_ADAPTER_LOCAL_OPTION_PATH' => 'Path', |
| 68 | 'STORAGE_ADAPTER_LOCAL_OPTION_PATH_EXPLAIN' => 'Storage path for files.<br>For example: <samp>files</samp>, <samp>images/avatars/upload</samp> or <samp>store</samp>.', |
| 69 | |
| 70 | // Form validation |
| 71 | 'STORAGE_UPDATE_SUCCESSFUL' => 'All storage types were successfully updated.', |
| 72 | 'STORAGE_NO_CHANGES' => 'No changes have been applied.', |
| 73 | 'STORAGE_PROVIDER_NOT_EXISTS' => 'Provider selected for %s doesn’t exist.', |
| 74 | 'STORAGE_PROVIDER_NOT_AVAILABLE' => 'Provider selected for %s is not available.', |
| 75 | 'STORAGE_FORM_TYPE_EMAIL_INCORRECT_FORMAT' => 'Incorrect email for %s of %s.', |
| 76 | 'STORAGE_FORM_TYPE_TEXT_TOO_LONG' => 'Text is too long for %s of %s.', |
| 77 | 'STORAGE_FORM_TYPE_SELECT_NOT_AVAILABLE' => 'Selected value is not available for %s of %s.', |
| 78 | |
| 79 | 'STORAGE_PATH_NOT_EXISTS' => '“%1$s” path does not exist or is not writable.', |
| 80 | 'STORAGE_PATH_NOT_SET' => '“%1$s” path is not set.', |
| 81 | ]); |