Commit | Line | Data |
---|---|---|
d6a1f63b | 1 | <?php |
170f821b SH |
2 | // This file is part of Moodle - http://moodle.org/ |
3 | // | |
4 | // Moodle is free software: you can redistribute it and/or modify | |
5 | // it under the terms of the GNU General Public License as published by | |
6 | // the Free Software Foundation, either version 3 of the License, or | |
7 | // (at your option) any later version. | |
8 | // | |
9 | // Moodle is distributed in the hope that it will be useful, | |
10 | // but WITHOUT ANY WARRANTY; without even the implied warranty of | |
11 | // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | |
12 | // GNU General Public License for more details. | |
13 | // | |
14 | // You should have received a copy of the GNU General Public License | |
15 | // along with Moodle. If not, see <http://www.gnu.org/licenses/>. | |
16 | ||
17 | /** | |
18 | * Cache language strings | |
19 | * | |
20 | * This file is part of Moodle's cache API, affectionately called MUC. | |
21 | * It contains the components that are requried in order to use caching. | |
22 | * | |
23 | * @package core | |
24 | * @category cache | |
25 | * @copyright 2012 Sam Hemelryk | |
26 | * @license http://www.gnu.org/copyleft/gpl.html GNU GPL v3 or later | |
27 | */ | |
d6a1f63b SH |
28 | |
29 | $string['actions'] = 'Actions'; | |
30 | $string['addinstance'] = 'Add instance'; | |
acf49f4b SH |
31 | $string['addnewlockinstance'] = 'Add a new lock instance'; |
32 | $string['addlocksuccess'] = 'Successfully added a new lock instance.'; | |
d6a1f63b SH |
33 | $string['addstore'] = 'Add {$a} store'; |
34 | $string['addstoresuccess'] = 'Successfully added a new {$a} store.'; | |
35 | $string['area'] = 'Area'; | |
36 | $string['caching'] = 'Caching'; | |
37 | $string['cacheadmin'] = 'Cache administration'; | |
38 | $string['cacheconfig'] = 'Configuration'; | |
a659a79f | 39 | $string['cachedef_calendar_subscriptions'] = 'Calendar subscriptions'; |
007bfe8b | 40 | $string['cachedef_config'] = 'Config settings'; |
eabbfa82 MG |
41 | $string['cachedef_coursecat'] = 'Course categories lists for particular user'; |
42 | $string['cachedef_coursecatrecords'] = 'Course categories records'; | |
36ba8fde | 43 | $string['cachedef_coursecontacts'] = 'List of course contacts'; |
eabbfa82 | 44 | $string['cachedef_coursecattree'] = 'Course categories tree'; |
299cfee5 | 45 | $string['cachedef_coursemodinfo'] = 'Accumulated information about modules and sections for each course'; |
d6a1f63b SH |
46 | $string['cachedef_databasemeta'] = 'Database meta information'; |
47 | $string['cachedef_eventinvalidation'] = 'Event invalidation'; | |
2d3c0fae | 48 | $string['cachedef_externalbadges'] = 'External badges for particular user'; |
b4dba228 | 49 | $string['cachedef_gradecondition'] = 'User grades cached for evaluating conditional availability'; |
e17dbeeb | 50 | $string['cachedef_groupdata'] = 'Course group information'; |
e85c56cc | 51 | $string['cachedef_htmlpurifier'] = 'HTML Purifier - cleaned content'; |
598a82c9 | 52 | $string['cachedef_langmenu'] = 'List of available languages'; |
d6a1f63b | 53 | $string['cachedef_locking'] = 'Locking'; |
cbd063f4 | 54 | $string['cachedef_navigation_expandcourse'] = 'Navigation expandable courses'; |
d8a1f426 | 55 | $string['cachedef_observers'] = 'Event observers'; |
bde002b8 | 56 | $string['cachedef_plugin_manager'] = 'Plugin info manager'; |
a560d636 | 57 | $string['cachedef_questiondata'] = 'Question definitions'; |
0f232ed6 | 58 | $string['cachedef_repositories'] = 'Repositories instances data'; |
d6a1f63b | 59 | $string['cachedef_string'] = 'Language string cache'; |
df460b5a | 60 | $string['cachedef_userselections'] = 'Data used to persist user selections throughout Moodle'; |
ad00331e | 61 | $string['cachedef_yuimodules'] = 'YUI Module definitions'; |
167ad91e | 62 | $string['cachelock_file_default'] = 'Default file locking'; |
f23fbfd8 | 63 | $string['cachestores'] = 'Cache stores'; |
d6a1f63b | 64 | $string['component'] = 'Component'; |
acf49f4b | 65 | $string['confirmlockdeletion'] = 'Confirm lock deletion'; |
d6a1f63b | 66 | $string['confirmstoredeletion'] = 'Confirm store deletion'; |
fd59389c | 67 | $string['defaultmappings'] = 'Stores used when no mapping is present'; |
d6a1f63b SH |
68 | $string['defaultmappings_help'] = 'These are the default stores that will be used if you don\'t map one or more stores to the cache definition.'; |
69 | $string['defaultstoreactions'] = 'Default stores cannot be modified'; | |
70 | $string['default_application'] = 'Default application store'; | |
d6a1f63b SH |
71 | $string['default_request'] = 'Default request store'; |
72 | $string['default_session'] = 'Default session store'; | |
73 | $string['definition'] = 'Definition'; | |
fd59389c | 74 | $string['definitionsummaries'] = 'Known cache definitions'; |
d6a1f63b | 75 | $string['delete'] = 'Delete'; |
acf49f4b SH |
76 | $string['deletelock'] = 'Delete lock'; |
77 | $string['deletelockconfirmation'] = 'Are you sure you want to delete the {$a} lock?'; | |
78 | $string['deletelockhasuses'] = 'You cannot delete this lock instance because it is being used by one or more stores.'; | |
79 | $string['deletelocksuccess'] = 'Successfully deleted the lock.'; | |
d6a1f63b SH |
80 | $string['deletestore'] = 'Delete store'; |
81 | $string['deletestoreconfirmation'] = 'Are you sure you want to delete the "{$a}" store?'; | |
82 | $string['deletestorehasmappings'] = 'You cannot delete this store because it has mappings. Please delete all mappings before deleting the store'; | |
83 | $string['deletestoresuccess'] = 'Successfully deleted the cache store'; | |
84 | $string['editmappings'] = 'Edit mappings'; | |
46e17f04 | 85 | $string['editsharing'] = 'Edit sharing'; |
d6a1f63b SH |
86 | $string['editstore'] = 'Edit store'; |
87 | $string['editstoresuccess'] = 'Succesfully edited the cache store.'; | |
88 | $string['editdefinitionmappings'] = '{$a} definition store mappings'; | |
5f5776c1 | 89 | $string['editdefinitionsharing'] = 'Edit definition sharing for {$a}'; |
d6a1f63b | 90 | $string['ex_configcannotsave'] = 'Unable to save the cache config to file.'; |
34c84c72 | 91 | $string['ex_nodefaultlock'] = 'Unable to find a default lock instance.'; |
d6a1f63b | 92 | $string['ex_unabletolock'] = 'Unable to acquire a lock for caching.'; |
7e7e108f | 93 | $string['ex_unmetstorerequirements'] = 'You are unable to use this store at the present time. Please refer to the documentation to determine its requirements.'; |
d6a1f63b SH |
94 | $string['gethit'] = 'Get - Hit'; |
95 | $string['getmiss'] = 'Get - Miss'; | |
d31fd615 | 96 | $string['inadequatestoreformapping'] = 'This store doesn\'t meet the requirements for all known definitions. Definitions for which this store is inadequate will be given the original default store instead of the selected store.'; |
acf49f4b | 97 | $string['invalidlock'] = 'Invalid lock'; |
d6a1f63b SH |
98 | $string['invalidplugin'] = 'Invalid plugin'; |
99 | $string['invalidstore'] = 'Invalid cache store provided'; | |
167ad91e | 100 | $string['lockdefault'] = 'Default'; |
acf49f4b | 101 | $string['lockingmeans'] = 'Locking mechanism'; |
167ad91e SH |
102 | $string['lockmethod'] = 'Lock method'; |
103 | $string['lockmethod_help'] = 'This is the method used for locking when required of this store.'; | |
104 | $string['lockname'] = 'Name'; | |
25927c42 | 105 | $string['locknamedesc'] = 'The name must be unique and can only consist of the characters: a-zA-Z_'; |
acf49f4b | 106 | $string['locknamenotunique'] = 'The name you have selected is not unique. Please select a unique name.'; |
167ad91e | 107 | $string['locksummary'] = 'Summary of cache lock instances.'; |
acf49f4b | 108 | $string['locktype'] = 'Type'; |
167ad91e | 109 | $string['lockuses'] = 'Uses'; |
d6a1f63b SH |
110 | $string['mappings'] = 'Store mappings'; |
111 | $string['mappingdefault'] = '(default)'; | |
112 | $string['mappingprimary'] = 'Primary store'; | |
113 | $string['mappingfinal'] = 'Final store'; | |
114 | $string['mode'] = 'Mode'; | |
115 | $string['modes'] = 'Modes'; | |
116 | $string['mode_1'] = 'Application'; | |
117 | $string['mode_2'] = 'Session'; | |
118 | $string['mode_4'] = 'Request'; | |
167ad91e | 119 | $string['nativelocking'] = 'This plugin handles its own locking.'; |
d6a1f63b SH |
120 | $string['none'] = 'None'; |
121 | $string['plugin'] = 'Plugin'; | |
26ce56fd | 122 | $string['pluginsummaries'] = 'Installed cache stores'; |
d6a1f63b | 123 | $string['purge'] = 'Purge'; |
50523565 | 124 | $string['purgedefinitionsuccess'] = 'Successfully purged the requested definition.'; |
170f821b | 125 | $string['purgestoresuccess'] = 'Successfully purged the requested store.'; |
d6a1f63b SH |
126 | $string['requestcount'] = 'Test with {$a} requests'; |
127 | $string['rescandefinitions'] = 'Rescan definitions'; | |
128 | $string['result'] = 'Result'; | |
129 | $string['set'] = 'Set'; | |
46e17f04 SH |
130 | $string['sharing'] = 'Sharing'; |
131 | $string['sharing_all'] = 'Everyone.'; | |
132 | $string['sharing_input'] = 'Custom key (entered below)'; | |
133 | $string['sharing_help'] = 'This allows you to determine how the cache data can be shared if you have a clustered setup, or if you have multiple sites all set up with the same store and wish to share the data. This is an advanced setting please make sure you understand its purpose before changing it.'; | |
134 | $string['sharing_siteid'] = 'Sites with the same site id.'; | |
135 | $string['sharing_version'] = 'Sites running the same version.'; | |
5f5776c1 | 136 | $string['sharingrequired'] = 'You must select at least one sharing option.'; |
46e17f04 SH |
137 | $string['sharingselected_all'] = 'Everyone'; |
138 | $string['sharingselected_input'] = 'Custom key'; | |
139 | $string['sharingselected_siteid'] = 'Site identifier'; | |
140 | $string['sharingselected_version'] = 'Version'; | |
d6a1f63b SH |
141 | $string['storeconfiguration'] = 'Store configuration'; |
142 | $string['storename'] = 'Store name'; | |
ca084ef1 | 143 | $string['storename_help'] = 'This sets the store name. It is used to identify the store within the system and can only consist of a-z A-Z 0-9 -_ and spaces. It also must be unique. If you attempt to use a name that has already been used you will receive an error.'; |
d6a1f63b SH |
144 | $string['storenamealreadyused'] = 'You must choose a unique name for this store.'; |
145 | $string['storenameinvalid'] = 'Invalid store name. You can only use a-z A-Z 0-9 -_ and spaces.'; | |
146 | $string['storeperformance'] = 'Cache store performance reporting - {$a} unique requests per operation.'; | |
147 | $string['storeready'] = 'Ready'; | |
c643628f | 148 | $string['storenotready'] = 'Store not ready'; |
775eeb1a | 149 | $string['storerequiresattention'] = 'Requires attention.'; |
c643628f | 150 | $string['storerequiresattention_help'] = 'This store instance is not ready to be used but has mappings. Fixing this issue will improve performance on your system. Please check that the store backend is ready to be used and that any PHP requirements are met.'; |
d6a1f63b SH |
151 | $string['storeresults_application'] = 'Store requests when used as an application cache.'; |
152 | $string['storeresults_request'] = 'Store requests when used as a request cache.'; | |
153 | $string['storeresults_session'] = 'Store requests when used as a session cache.'; | |
154 | $string['stores'] = 'Stores'; | |
155 | $string['store_default_application'] = 'Default file store for application caches'; | |
d6a1f63b SH |
156 | $string['store_default_request'] = 'Default static store for request caches'; |
157 | $string['store_default_session'] = 'Default session store for session caches'; | |
26ce56fd | 158 | $string['storesummaries'] = 'Configured store instances'; |
d6a1f63b SH |
159 | $string['supports'] = 'Supports'; |
160 | $string['supports_multipleidentifiers'] = 'multiple identifiers'; | |
161 | $string['supports_dataguarantee'] = 'data guarantee'; | |
162 | $string['supports_nativettl'] = 'ttl'; | |
163 | $string['supports_nativelocking'] = 'locking'; | |
164 | $string['supports_keyawareness'] = 'key awareness'; | |
dbd2ea4e | 165 | $string['supports_searchable'] = 'searching by key'; |
d6a1f63b SH |
166 | $string['tested'] = 'Tested'; |
167 | $string['testperformance'] = 'Test performance'; | |
168 | $string['unsupportedmode'] = 'Unsupported mode'; | |
73321216 | 169 | $string['untestable'] = 'Untestable'; |
46e17f04 SH |
170 | $string['userinputsharingkey'] = 'Custom key for sharing'; |
171 | $string['userinputsharingkey_help'] = 'Enter your own private key here. When you set up other stores on other sites you wish to share data with make sure you set the exact same key there.'; |