blob: 492691fdf0d18d8c3ea81e8db2886a41cfcbf069 [file] [log] [blame]
[email protected]dae12fe92013-11-26 14:57:341<?xml version="1.0" encoding="utf-8"?>
2<grit-part>
3
4 <message name="IDS_POLICY_DM_STATUS_SUCCESS" desc="Message indicating a successful device management server call.">
5 Request succeeded
6 </message>
7 <message name="IDS_POLICY_DM_STATUS_REQUEST_INVALID" desc="Message indicating a bad request to the enterprise server.">
8 Invalid request or request parameters
9 </message>
10 <message name="IDS_POLICY_DM_STATUS_REQUEST_FAILED" desc="Message indicating the request to the enterprise server failed in the network.">
11 Network error
12 </message>
13 <message name="IDS_POLICY_DM_STATUS_TEMPORARY_UNAVAILABLE" desc="Message indicating a temporary problem on the enterprise server.">
14 Temporary server error
15 </message>
16 <message name="IDS_POLICY_DM_STATUS_HTTP_STATUS_ERROR" desc="Message indicating an abnormal response code from the enterprise server.">
17 HTTP error
18 </message>
19 <message name="IDS_POLICY_DM_STATUS_RESPONSE_DECODING_ERROR" desc="Message indicating a problem decoding a response from the enterprise server.">
20 Failed to decode response
21 </message>
22 <message name="IDS_POLICY_DM_STATUS_SERVICE_MANAGEMENT_NOT_SUPPORTED" desc="Message indicating that enterprise management is not applicable to the user/device.">
23 Management not supported
24 </message>
25 <message name="IDS_POLICY_DM_STATUS_SERVICE_DEVICE_NOT_FOUND" desc="Message indicating the enterprise server is missing a device record.">
26 Missing device record
27 </message>
28 <message name="IDS_POLICY_DM_STATUS_SERVICE_MANAGEMENT_TOKEN_INVALID" desc="Message indicating the token used to authenticate to the enterprise server is invalid.">
29 Invalid device management token
30 </message>
31 <message name="IDS_POLICY_DM_STATUS_SERVICE_ACTIVATION_PENDING" desc="Message indicating enterprise management must first be activated for this user/device.">
32 Activation is pending on the server
33 </message>
34 <message name="IDS_POLICY_DM_STATUS_SERVICE_INVALID_SERIAL_NUMBER" desc="Message indicating the provided device serial number is invalid.">
35 Device serial number is invalid
36 </message>
37 <message name="IDS_POLICY_DM_STATUS_SERVICE_DEVICE_ID_CONFLICT" desc="Message indicating the chosen device identifier is already used.">
38 Conflicting device identifier
39 </message>
40 <message name="IDS_POLICY_DM_STATUS_SERVICE_MISSING_LICENSES" desc="Message indicating the enterprise server doesn't have enough licenses to allow management.">
41 Licenses exhausted
42 </message>
[email protected]ffddfc52013-12-12 21:04:3843 <message name="IDS_POLICY_DM_STATUS_SERVICE_DEPROVISIONED" desc="Message indicating the administrator has deprovisioned this client on the server.">
44 Deprovisioned
45 </message>
[email protected]dae12fe92013-11-26 14:57:3446 <message name="IDS_POLICY_DM_STATUS_SERVICE_POLICY_NOT_FOUND" desc="Message indicating that the enterprise server failed to find the policy to be applied to the device.">
47 Policy not found
48 </message>
49 <message name="IDS_POLICY_DM_STATUS_UNKNOWN_ERROR" desc="Message indicating an unknown error from the enterprise server.">
50 Unknown error
51 </message>
[email protected]b24033e5e2014-03-31 17:33:4952 <message name="IDS_POLICY_DM_STATUS_SERVICE_DOMAIN_MISMATCH" desc="Message indicating this client cannot be registered with the specified domain.">
53 Domain mismatch
54 </message>
drcrash26a5d632016-08-25 00:57:5355 <message name="IDS_POLICY_DM_STATUS_CANNOT_SIGN_REQUEST" desc="Message indicating a failure to sign a request.">
56 Request could not be signed
57 </message>
Alexander Hendrich9fb2b022018-08-27 12:14:0858 <message name="IDS_POLICY_DM_STATUS_CONSUMER_ACCOUNT_WITH_PACKAGED_LICENSE" desc="Message to show when the user tries to enroll a device with a packaged license using a consumer account.">
59 Can't enroll with consumer account (packaged license available).
60 </message>
[email protected]dae12fe92013-11-26 14:57:3461
62 <message name="IDS_POLICY_VALIDATION_OK" desc="Message indicating successful policy validation.">
63 Validation successful
64 </message>
65 <message name="IDS_POLICY_VALIDATION_BAD_INITIAL_SIGNATURE" desc="Message indicating a bad signature on policy validation using the initial key.">
tnagelccc8edf2016-08-04 14:07:3066 Bad initial signature
[email protected]dae12fe92013-11-26 14:57:3467 </message>
68 <message name="IDS_POLICY_VALIDATION_BAD_SIGNATURE" desc="Message indicating a bad signature on policy validation.">
69 Bad signature
70 </message>
71 <message name="IDS_POLICY_VALIDATION_ERROR_CODE_PRESENT" desc="Message indicating policy validation failure due to an error code in the policy.">
72 Error code present in the policy response
73 </message>
74 <message name="IDS_POLICY_VALIDATION_PAYLOAD_PARSE_ERROR" desc="Message indicating a policy parse error during policy validation.">
75 Error parsing policy
76 </message>
77 <message name="IDS_POLICY_VALIDATION_WRONG_POLICY_TYPE" desc="Message indicating the policy did not have the expected type.">
78 Wrong policy type
79 </message>
80 <message name="IDS_POLICY_VALIDATION_WRONG_SETTINGS_ENTITY_ID" desc="Message indicating the policy did not have the expected entity identifier.">
81 Wrong entity identifier
82 </message>
83 <message name="IDS_POLICY_VALIDATION_BAD_TIMESTAMP" desc="Message indicating the policy timestamp is bad.">
84 Bad policy timestamp
85 </message>
tnagel6310fd62016-08-12 13:03:0286 <message name="IDS_POLICY_VALIDATION_BAD_DM_TOKEN" desc="Message indicating the policy token is empty or different from the one expected.">
87 Returned policy token is empty or doesn't match current token
[email protected]dae12fe92013-11-26 14:57:3488 </message>
ljusten981dc1a2016-09-05 16:21:4589 <message name="IDS_POLICY_VALIDATION_BAD_DEVICE_ID" desc="Message indicating the policy device id is empty or different from the one expected.">
90 Returned policy device id is empty or doesn't match current device id
91 </message>
Sergey Poromov4405a2972018-04-09 22:36:4092 <message name="IDS_POLICY_VALIDATION_BAD_USER" desc="Message indicating policy validation failed due to bad user/domain id.">
[email protected]dae12fe92013-11-26 14:57:3493 Wrong policy subject
94 </message>
95 <message name="IDS_POLICY_VALIDATION_POLICY_PARSE_ERROR" desc="Message indicating a parse error in policy.">
96 Error parsing policy settings
97 </message>
[email protected]1b9a4a12014-02-02 17:28:3998 <message name="IDS_POLICY_VALIDATION_BAD_KEY_VERIFICATION_SIGNATURE" desc="Message indicating a policy key had an invalid verification signature.">
tnagela6ac28e2014-12-09 17:12:2299 Bad verification signature
[email protected]1b9a4a12014-02-02 17:28:39100 </message>
Alexander Hendrichce3a5812018-08-10 16:53:31101 <message name="IDS_POLICY_VALIDATION_VALUE_WARNING" desc="Message indicating the policy value validation succeeded with non-fatal warnings.">
102 Validation of policy values has raised warnings
103 </message>
104 <message name="IDS_POLICY_VALIDATION_VALUE_ERROR" desc="Message indicating the policy value validation failed with fatal errors.">
105 Validation of policy values has failed with errors
106 </message>
[email protected]dae12fe92013-11-26 14:57:34107 <message name="IDS_POLICY_VALIDATION_UNKNOWN_ERROR" desc="Message indicating unknown error in policy validation.">
108 Unknown error
109 </message>
110
111 <message name="IDS_POLICY_STORE_STATUS_OK" desc="Message indicating a healthy policy store.">
112 Policy cache OK
113 </message>
114 <message name="IDS_POLICY_STORE_STATUS_LOAD_ERROR" desc="Message indicating a failure to load policy.">
115 Failed to load policy settings
116 </message>
117 <message name="IDS_POLICY_STORE_STATUS_STORE_ERROR" desc="Message indicating a failure to store policy.">
118 Failed to store policy settings
119 </message>
tnagela6ac28e2014-12-09 17:12:22120 <message name="IDS_POLICY_STORE_STATUS_PARSE_ERROR" desc="Message indicating a parse error on loading policy.">
[email protected]dae12fe92013-11-26 14:57:34121 Policy parse error
122 </message>
123 <message name="IDS_POLICY_STORE_STATUS_SERIALIZE_ERROR" desc="Message indicating an error preparing policy for storage.">
124 Serialization error
125 </message>
126 <message name="IDS_POLICY_STORE_STATUS_VALIDATION_ERROR" desc="Message indicating policy validation on store/load failed.">
tnagela6ac28e2014-12-09 17:12:22127 Validation error: <ph name="VALIDATION_ERROR">$1<ex>Bad signature</ex></ph>
[email protected]dae12fe92013-11-26 14:57:34128 </message>
129 <message name="IDS_POLICY_STORE_STATUS_BAD_STATE" desc="Message indicating policy cannot be stored/loaded due to the backend being in bad state.">
130 Backing store in bad state
131 </message>
132 <message name="IDS_POLICY_STORE_STATUS_UNKNOWN_ERROR" desc="Message indicating an unknown error with the policy cache.">
133 Unknown error
134 </message>
135
[email protected]637357862013-12-20 14:10:23136 <message name="IDS_POLICY_ASSOCIATION_STATE_ACTIVE" desc="Message indicating that the server actively manages the client.">
137 Active
138 </message>
139 <message name="IDS_POLICY_ASSOCIATION_STATE_UNMANAGED" desc="Message indicating that the server is currently not willing to manage this client.">
140 Unmanaged
141 </message>
142 <message name="IDS_POLICY_ASSOCIATION_STATE_DEPROVISIONED" desc="Message indicating that the server has deprovisioned the client.">
143 Deprovisioned
144 </message>
145
[email protected]dae12fe92013-11-26 14:57:34146 <message name="IDS_POLICY_TYPE_ERROR" desc="The text displayed in the status column when a policy value has the wrong type.">
147 Expected <ph name="VALUE_TYPE">$1<ex>boolean</ex></ph> value.
148 </message>
149 <message name="IDS_POLICY_OUT_OF_RANGE_ERROR" desc="The text displayed in the status column when a policy value is out of range.">
150 Value is out of range <ph name="VALUE">$1<ex>10</ex></ph>.
151 </message>
152 <message name="IDS_POLICY_VALUE_FORMAT_ERROR" desc="The text displayed in the status column when a policy value doesn't match the expected format.">
153 Value doesn't match format.
154 </message>
Julian Pastarmovc9d86f12017-12-01 13:44:35155 <message name="IDS_POLICY_DEFAULT_SEARCH_DISABLED" desc="The text displayed in the status column when a policy value has been ignored because default search has not been enabled.">
156 Ignored because default search is not enabled by policy.
[email protected]dae12fe92013-11-26 14:57:34157 </message>
158 <message name="IDS_POLICY_NOT_SPECIFIED_ERROR" desc="The text displayed in the status column when a policy value should have been specified but wasn't.">
159 Must be specified.
160 </message>
161 <message name="IDS_POLICY_SUBKEY_ERROR" desc="The text displayed in the status column for errors in a subkey of a policy.">
162 Key "<ph name="SUBKEY">$1<ex>ProxyMode</ex></ph>": <ph name="ERROR">$2<ex>Must be specified.</ex></ph>
163 </message>
164 <message name="IDS_POLICY_LIST_ENTRY_ERROR" desc="The text displayed in the status column for errors in list entry in a policy.">
165 List entry "<ph name="ENTRY_INDEX">$1<ex>3</ex></ph>": <ph name="ERROR">$2<ex>Value is out of range.</ex></ph>
166 </message>
[email protected]a5bb83d2014-02-05 15:32:10167 <message name="IDS_POLICY_SCHEMA_VALIDATION_ERROR" desc="The text displayed in the status column when the policy value doesn't conform to the policy schema.">
168 Schema validation error at "<ph name="ERROR_PATH">$1<ex>AC.Delays.ScreenOff</ex></ph>": <ph name="ERROR">$2<ex>Value is out of range.</ex></ph>
169 </message>
A Olsenbc71baf2018-06-05 14:42:44170 <message name="IDS_POLICY_INVALID_JSON_ERROR" desc="The text displayed in the status column when the policy value should be a valid JSON string, but it cannot be parsed as JSON.">
171 Error while parsing JSON value: <ph name="ERROR">$1<ex>Line 2, Column 3: Map keys must be quoted.</ex></ph>
172 </message>
[email protected]dae12fe92013-11-26 14:57:34173 <message name="IDS_POLICY_INVALID_SEARCH_URL_ERROR" desc="The text displayed in the status column when a the URL given for DefaultSearchProviderSearchURL is invalid.">
174 Invalid search URL.
175 </message>
176 <message name="IDS_POLICY_INVALID_PROXY_MODE_ERROR" desc="The text displayed in the status column when the value for ProxyMode is invalid.">
177 Invalid proxy mode.
178 </message>
binjin1e1cc33a2014-10-09 18:08:16179 <message name="IDS_POLICY_INVALID_UPDATE_URL_ERROR" desc="The text displayed in the status column when the update URL for given extension is invalid.">
180 Invalid update URL for extension with ID "<ph name="EXTENSION_ID">$1<ex>abcdefghijklmnopabcdefghijklmnop</ex></ph>".
181 </message>
Nick Petersond952cb772018-03-07 15:46:03182 <message name="IDS_POLICY_OFF_CWS_URL_ERROR" desc="The text displayed in the status column when the update URL points to a location other than the Chrome Webstore and the machine is not enterprise managed.">
Lutz Justene4055bd2018-12-03 11:36:39183 This computer is not detected as enterprise managed so policy can only automatically install extensions hosted on the Chrome Webstore. The Chrome Webstore update URL is "<ph name="CWS_UPDATE_URL">$1<ex>https://clients2.google.com/service/update2/crx</ex></ph>".
184 </message>
185 <message name="IDS_POLICY_HOMEPAGE_LOCATION_ERROR" desc="The text displayed in the status column when the homepage URL given by the HomepageLocation policy is invalid.">
186 Invalid URL. Must be a URL with a standard scheme.
Nick Petersond952cb772018-03-07 15:46:03187 </message>
[email protected]dae12fe92013-11-26 14:57:34188 <message name="IDS_POLICY_PROXY_MODE_DISABLED_ERROR" desc="The text displayed in the status column when use of a proxy is disabled but a proxy configuration is given.">
189 Use of a proxy is disabled but an explicit proxy configuration is specified.
190 </message>
191 <message name="IDS_POLICY_PROXY_MODE_AUTO_DETECT_ERROR" desc="The text displayed in the status column when the proxy is set to auto configured but a proxy configuration is given.">
192 Proxy is set to auto configured.
193 </message>
194 <message name="IDS_POLICY_PROXY_MODE_PAC_URL_ERROR" desc="The text displayed in the status column when the proxy configuration is set to use a .pac script URL but policies only for fixed proxy servers are also specified.">
195 Proxy configuration is set to use a .pac script URL, not fixed proxy servers.
196 </message>
197 <message name="IDS_POLICY_PROXY_MODE_FIXED_SERVERS_ERROR" desc="The text displayed in the status column when the proxy configuration is set to use fixed proxy servers but an alternate configuration is given.">
198 Proxy is set to use fixed proxy servers, not a .pac script URL.
199 </message>
200 <message name="IDS_POLICY_PROXY_MODE_SYSTEM_ERROR" desc="The text displayed in the status column when the proxy configuration is set to use system settings but an alternate configuration is given.">
201 System proxy settings are set to be used but an explicit proxy configuration is also specified.
202 </message>
203 <message name="IDS_POLICY_PROXY_BOTH_SPECIFIED_ERROR" desc="The text displayed in the status column when both fixed proxy servers and .pac url are specified.">
204 Both fixed proxy servers and a .pac script URL are specified.
205 </message>
206 <message name="IDS_POLICY_PROXY_NEITHER_SPECIFIED_ERROR" desc="The text displayed in the status column when neither a fixed proxy servers or a .pac url are specified.">
207 Neither fixed proxy servers nor a .pac script URL are specified.
208 </message>
209 <message name="IDS_POLICY_OVERRIDDEN" desc="The text displayed in the status column when the corresponding policy is being ignored because another policy is overriding it.">
210 Ignored because it was overridden by <ph name="POLICY_NAME">$1<ex>ProxyMode</ex></ph>.
211 </message>
212 <message name="IDS_POLICY_DEPRECATED" desc="The text displayed in the status column when the corresponding policy is deprecated.">
213 This policy has been deprecated.
214 </message>
215 <message name="IDS_POLICY_VALUE_DEPRECATED" desc="The text displayed in the status column when a specific value for a policy is deprecated.">
216 This value is deprecated for this policy.
217 </message>
[email protected]604b2722014-04-23 22:12:19218 <if expr="chromeos">
219 <message name="IDS_POLICY_NETWORK_CONFIG_PARSE_FAILED" desc="The text displayed in the status column when the corresponding network configuration policy failed to parse.">
Alexander Hendrichd1feffd2018-11-13 12:20:14220 Network configuration failed to be parsed (invalid JSON).
[email protected]604b2722014-04-23 22:12:19221 </message>
Alexander Hendrichaa67ada12018-08-10 17:26:03222 <message name="IDS_POLICY_NETWORK_CONFIG_IMPORT_PARTIAL" desc="The text displayed in the status column when the corresponding network configuration policy is not standard conform and was imported partially. DEBUG_INFO contains non-localized detailed information about existing warnings.">
[email protected]604b2722014-04-23 22:12:19223 The network configuration doesn't comply to the ONC standard. Parts of the configuration may not be imported.
Alexander Hendrichaa67ada12018-08-10 17:26:03224Additional details:
225<ph name="DEBUG_INFO">$1<ex>WARNING: Field name 'SomeRandomField' is unknown. (at toplevel)</ex></ph>
[email protected]604b2722014-04-23 22:12:19226 </message>
Alexander Hendrichaa67ada12018-08-10 17:26:03227 <message name="IDS_POLICY_NETWORK_CONFIG_IMPORT_FAILED" desc="The text displayed in the status column when the corresponding network configuration policy is invalid. DEBUG_INFO contains non-localized detailed information about existing errors/warnings.">
[email protected]604b2722014-04-23 22:12:19228 The network configuration is invalid and couldn't be imported.
Alexander Hendrichaa67ada12018-08-10 17:26:03229Additional details:
230<ph name="DEBUG_INFO">$1<ex>ERROR: Field name 'SomeRandomField' is unknown. (at toplevel)</ex></ph>
[email protected]604b2722014-04-23 22:12:19231 </message>
232 <message name="IDS_POLICY_SCOPE_ERROR" desc="Text displayed in the status column when a policy is set in an unsupported scope.">
233 Policy scope is not supported.
234 </message>
235 </if>
[email protected]4e76f002014-06-16 17:24:13236 <message name="IDS_POLICY_LEVEL_ERROR" desc="Text displayed in the status column when a policy is set at an unsupported level.">
237 Policy level is not supported.
238 </message>
[email protected]dae12fe92013-11-26 14:57:34239 <message name="IDS_POLICY_OK" desc="Text displayed in the status column when a valid value is set for a policy.">
240 OK
241 </message>
242 <message name="IDS_POLICY_UNSET" desc="Text displayed in the status column when no value is set for a policy.">
243 Not set.
244 </message>
245 <message name="IDS_POLICY_UNKNOWN" desc="Text displayed in the status column when a policy name is not recognized.">
246 Unknown policy.
247 </message>
[email protected]dae12fe92013-11-26 14:57:34248
Anton Urusov47cd4932017-09-19 14:41:41249 <!-- chrome://policy-tool -->
rodmartin56623302018-03-13 16:15:48250 <message name="IDS_POLICY_TOOL_CANCEL_RENAME" desc="Button to cancel the dialog that appears in rename session.">
251 Cancel
252 </message>
253 <message name="IDS_POLICY_TOOL_CONFIRM_RENAME" desc="Button that confirm a rename session.">
254 Confirm
255 </message>
Anton Urusov47cd4932017-09-19 14:41:41256 <message name="IDS_POLICY_TOOL_TITLE" desc="Admin page title and the title of the section that lists policies.">
257 Policy management
258 </message>
rodmartin4933e6b2018-05-01 15:01:10259 <message name="IDS_EXPORT_POLICIES_LINUX" desc="Button that exports the current session policy
260 in linux format.">
261 Export Linux
262 </message>
rodmartin389f7fd2018-05-07 20:22:19263 <message name="IDS_EXPORT_POLICIES_MAC" desc="Button that exports the current session policy
264 in mac format (.plist).">
265 Export MacOS
266 </message>
Anton Urusov47cd4932017-09-19 14:41:41267 <message name="IDS_POLICY_TOOL_EDIT" desc="Label for the button to change policy value in current session.">
268 Edit
269 </message>
270 <message name="IDS_POLICY_TOOL_SAVE" desc="Label for the button to save policy value after editing it.">
271 Save
272 </message>
273 <message name="IDS_POLICY_TOOL_LOAD_SESSION" desc="Label for the button that loads specified session.">
274 Load session
275 </message>
rodmartin56623302018-03-13 16:15:48276 <message name="IDS_POLICY_TOOL_REMOVE_SESSION" desc="Label for the button that removes specified session.">
277 Remove
278 </message>
279 <message name="IDS_POLICY_TOOL_RENAME_SESSION" desc="Label for the button that renames specified session.">
280 Rename
281 </message>
Anton Urusov47cd4932017-09-19 14:41:41282 <message name="IDS_POLICY_TOOL_SESSION_NAME_PLACEHOLDER" desc="Placeholder for the input field that lets the user change policy management sessions.">
283 Session name
284 </message>
rodmartin8420f792018-05-01 19:56:02285 <message name="IDS_POLICY_TOOL_INVALID_TYPE" desc="The text displayed in the status column when the value type doesn't match the actual policy type.">
286 The policy type is invalid.
287 </message>
Anton Urusov3dca4e232017-10-11 17:59:25288 <message name="IDS_POLICY_TOOL_SAVING_DISABLED" desc="A message that is shown to the user when there is some problem that prevents saving the session to disk.">
289 There was a problem accessing the session files. Saving to disk is currently disabled. Please reload the page to try again.
Anton Urusov47cd4932017-09-19 14:41:41290 </message>
291 <message name="IDS_POLICY_TOOL_INVALID_SESSION_NAME" desc="A message that is shown to the user when the entered session name is invalid.">
292 Please enter a valid session name.
293 </message>
Anton Urusov641a8b82017-10-06 15:08:48294 <message name="IDS_POLICY_TOOL_ENABLE_EDITING" desc="Label for the button to reset the current session to enable editing policy values.">
295 Reset
296 </message>
297 <message name="IDS_POLICY_TOOL_CORRUPTED_FILE" desc="A message that is shown to the user when the session file is corrupted.">
298 The file seems to be corrupted. Click the 'Reset' button to reset the session.
Anton Urusov47cd4932017-09-19 14:41:41299 </message>
Georges Khalil4092b6c2017-10-20 14:21:32300 <message name="IDS_POLICY_TOOL_DELETE_FAILED" desc="A message that is shown to the user when deleting the session fails because the session name that is sent from Javascript is invalid.">
301 The session with this name is not valid for deletion.
302 </message>
rodmartin56623302018-03-13 16:15:48303 <message name="IDS_POLICY_TOOL_SESSION_NOT_EXIST" desc="A message that is shown to the user when
304 the selected session name does not exist.">
305 The selected session does not exist.
306 </message>
307 <message name="IDS_POLICY_TOOL_SESSION_EXIST" desc="A message that is show to the user when
308 there is another session with the same name in a renaming session.">
309 This session name already exists.
310 </message>
311 <message name="IDS_POLICY_TOOL_RENAME_FAILED" desc="A message that is shown to the user when
312 renaming the session fails because the function that rename the file failed.">
313 Failed to rename the session.
314 </message>
[email protected]dae12fe92013-11-26 14:57:34315 <!-- chrome://policy -->
316 <message name="IDS_POLICY_TITLE" desc="Page title and the title of the section that lists policies.">
317 Policies
318 </message>
319 <message name="IDS_POLICY_FILTER_PLACEHOLDER" desc="Placeholder for the input field that lets the user filter policies by name.">
320 Filter policies by name
321 </message>
322 <message name="IDS_POLICY_RELOAD_POLICIES" desc="Label for the button that reloads policies.">
323 Reload policies
324 </message>
Anton Urusovcd9784a2017-08-10 21:00:21325 <message name="IDS_EXPORT_POLICIES_JSON" desc="Label for the button that exports policies in JSON format.">
326 Export to JSON
327 </message>
[email protected]dae12fe92013-11-26 14:57:34328 <message name="IDS_POLICY_STATUS" desc="Title of the status section.">
329 Status
330 </message>
331 <message name="IDS_POLICY_STATUS_DEVICE" desc="Title for the device policy status box.">
332 Device policies
333 </message>
334 <message name="IDS_POLICY_STATUS_USER" desc="Title for the user policy status box.">
335 User policies
336 </message>
Tien Mai0b22b082018-09-26 15:10:12337<message name="IDS_POLICY_STATUS_MACHINE" desc="Title for the machine policy status box.">
338 Machine policies
339 </message>
Ivan Sandrk636b89d2017-07-28 10:42:57340 <message name="IDS_POLICY_LABEL_ENTERPRISE_ENROLLMENT_DOMAIN" desc="Label for the enrollment domain in the device policy status box.">
[email protected]dae12fe92013-11-26 14:57:34341 Enrollment domain:
342 </message>
Ivan Sandrk636b89d2017-07-28 10:42:57343 <message name="IDS_POLICY_LABEL_ENTERPRISE_DISPLAY_DOMAIN" desc="Label for the display domain in the device policy status box.">
344 Display domain:
345 </message>
Tien Mai0b22b082018-09-26 15:10:12346 <message name="IDS_POLICY_LABEL_MACHINE_ENROLLMENT_DOMAIN" desc="Label for the enrollment domain in the machine policy status box.">
347 Enrollment domain:
348 </message>
349 <message name="IDS_POLICY_LABEL_MACHINE_ENROLLMENT_TOKEN" desc="Label for the enrollment token in the machine policy status box.">
350 Enrollment Token:
351 </message>
352 <message name="IDS_POLICY_LABEL_MACHINE_ENROLLMENT_DEVICE_ID" desc="Label for the device ID in the machine policy status box.">
353 Device ID:
354 </message>
355 <message name="IDS_POLICY_LABEL_MACHINE_ENROLLMENT_MACHINE_NAME" desc="Label for the machine name in the machine policy status box.">
356 Machine Name:
357 </message>
[email protected]dae12fe92013-11-26 14:57:34358 <message name="IDS_POLICY_LABEL_USERNAME" desc="Label for the username in the user policy status box.">
359 User:
360 </message>
Sergey Poromov1ef25cf2018-04-18 16:10:51361 <message name="IDS_POLICY_LABEL_GAIA_ID" desc="Label for the user GAIA ID in the user policy status box.">
362 Gaia ID:
363 </message>
[email protected]dae12fe92013-11-26 14:57:34364 <message name="IDS_POLICY_LABEL_CLIENT_ID" desc="Label for the client IDs in the policy status boxes.">
365 Client ID:
366 </message>
pbond36d002d2015-04-15 11:55:46367 <message name="IDS_POLICY_LABEL_ASSET_ID" desc="Label for the asset ID in the device policy status box.">
368 Asset ID:
369 </message>
370 <message name="IDS_POLICY_LABEL_LOCATION" desc="Label for the device location in the device policy status box.">
371 Assigned Location:
372 </message>
373 <message name="IDS_POLICY_LABEL_DIRECTORY_API_ID" desc="Label for the directory API ID in the device policy status box.">
374 Directory API ID:
375 </message>
[email protected]dae12fe92013-11-26 14:57:34376 <message name="IDS_POLICY_LABEL_TIME_SINCE_LAST_REFRESH" desc="Label for the time since the last refresh in the policy status boxes.">
377 Last fetched:
378 </message>
pbond36d002d2015-04-15 11:55:46379 <message name="IDS_POLICY_NOT_SPECIFIED" desc="Indicates if that device attribute has not specified yet.">
380 Not Specified
381 </message>
[email protected]dae12fe92013-11-26 14:57:34382 <message name="IDS_POLICY_NEVER_FETCHED" desc="Indicates that a policy fetch was never performed before.">
383 Never
384 </message>
385 <message name="IDS_POLICY_LABEL_REFRESH_INTERVAL" desc="Label for the refresh interval in the policy status boxes.">
386 Fetch interval:
387 </message>
388 <message name="IDS_POLICY_LABEL_STATUS" desc="Label for the actual status in the policy status boxes.">
389 Status:
390 </message>
391 <message name="IDS_POLICY_SHOW_UNSET" desc="Label for the checkbox that determines whether policies whose value has not been set are shown.">
392 Show policies with no value set
393 </message>
394 <message name="IDS_POLICY_NO_POLICIES_SET" desc="Text displayed when none of the policies have been set.">
395 No policies set
396 </message>
397 <message name="IDS_POLICY_HEADER_SCOPE" desc="Table header for the column in the policy table that details whether a policy is a user or a device policy.">
398 Applies to
399 </message>
400 <message name="IDS_POLICY_HEADER_LEVEL" desc="Table header for the column in the policy table that details whether a policy is mandatory or recommended.">
401 Level
402 </message>
403 <message name="IDS_POLICY_HEADER_NAME" desc="Table header for the column in the policy table that contains the policy name.">
404 Policy name
405 </message>
406 <message name="IDS_POLICY_HEADER_VALUE" desc="Table header for the column in the policy table that contains the policy value.">
407 Policy value
408 </message>
409 <message name="IDS_POLICY_HEADER_STATUS" desc="Table header for the column in policy table that contains the policy status.">
410 Status
411 </message>
fhorschig64834b712015-09-21 14:20:23412 <message name="IDS_POLICY_HEADER_SOURCE" desc="Table header for the column in policy table that contains the policy source.">
413 Source
414 </message>
[email protected]dae12fe92013-11-26 14:57:34415 <message name="IDS_POLICY_SHOW_EXPANDED_VALUE" desc="Text for the link that shows the policy value. Used when the policy value is too long to be always visible.">
416 Show value
417 </message>
418 <message name="IDS_POLICY_HIDE_EXPANDED_VALUE" desc="Text for the link that hides the policy value. Used when the policy value is too long to be always visible.">
419 Hide value
420 </message>
Anton Urusov15f361a12017-09-05 19:43:29421 <message name="IDS_POLICY_LEARN_MORE" desc="Help text for learn-more link for known chrome policies.">
422 Learn more about <ph name="POLICY_NAME">$1<ex>AllowDinosaurEasterEgg</ex></ph> policy
423 </message>
[email protected]dae12fe92013-11-26 14:57:34424 <message name="IDS_POLICY_SCOPE_USER" desc="Text displayed in the Applies to column when a policy applies to the current user only.">
425 Current user
426 </message>
[email protected]34c4cab2014-02-20 01:54:52427 <if expr="not is_android and not chromeos">
[email protected]dae12fe92013-11-26 14:57:34428 <message name="IDS_POLICY_SCOPE_DEVICE" desc="Text displayed in the Applies to column when a policy applies to everyone on the machine.">
429 Machine
430 </message>
431 </if>
[email protected]34c4cab2014-02-20 01:54:52432 <if expr="chromeos or is_android">
[email protected]dae12fe92013-11-26 14:57:34433 <message name="IDS_POLICY_SCOPE_DEVICE" desc="Mobile: Text displayed in the Applies To column when a policy applies to everyone on the device.">
434 Device
435 </message>
436 </if>
437 <message name="IDS_POLICY_LEVEL_RECOMMENDED" desc="Text displayed in the Level column when a policy is recommended.">
438 Recommended
439 </message>
440 <message name="IDS_POLICY_LEVEL_MANDATORY" desc="Text displayed in the Level column when a policy is mandatory.">
441 Mandatory
442 </message>
fhorschig64834b712015-09-21 14:20:23443 <message name="IDS_POLICY_SOURCE_ENTERPRISE_DEFAULT" desc="Indicates that a policy is set by default in an enterprise environment and can be overridden (for Chrome OS only).">
444 Enterprise default
445 </message>
446 <message name="IDS_POLICY_SOURCE_CLOUD" desc="Indicates that the policy originates from the cloud.">
447 Cloud
448 </message>
tnagel66f76d32017-06-06 13:21:56449 <message name="IDS_POLICY_SOURCE_ACTIVE_DIRECTORY" desc="Indicates that the policy originates from a local server, e.g. Samba or Active Directory.">
450 <ph name="MICROSOFT_ACTIVE_DIRECTORY">Local Server</ph>
tnagel8d2791ec2016-11-18 10:43:13451 </message>
fhorschig64834b712015-09-21 14:20:23452 <message name="IDS_POLICY_SOURCE_PLATFORM" desc="Indicates that the policy is obtained from the local OS.">
453 Platform
454 </message>
Ivan Sandrkc3212ea2018-09-11 17:01:47455 <message name="IDS_POLICY_SOURCE_PUBLIC_SESSION_OVERRIDE" desc="Indicates that the policy is set programmatically because of an active managed session (for Chrome OS only). It could have overridden other sources that set this policy.">
456 Managed session override
fhorschig64834b712015-09-21 14:20:23457 </message>
fhorschig07c5e0622015-12-03 16:48:57458 <message name="IDS_POLICY_RISK_TAG_FULL_ADMIN_ACCESS" desc="Title of a group/tag whose policies potentially allow the administrator to access all of a user's data.">
459 Full Admin Access
460 </message>
461 <message name="IDS_POLICY_RISK_TAG_SYSTEM_SECURITY" desc="Title of a group/tag whose policies might influence the system's security.">
462 System Security
463 </message>
464 <message name="IDS_POLICY_RISK_TAG_WEBSITE_SHARING" desc="Title of a group/tag whose policies might lead to information sharing with other websites.">
465 Sharing with Websites
466 </message>
467 <message name="IDS_POLICY_RISK_TAG_ADMIN_SHARING" desc="Title of a group/tag whose policies potentially allow sending information about the user (like activity times) to an administrator.">
468 Sharing with Administrator
469 </message>
470 <message name="IDS_POLICY_RISK_TAG_FILTERING" desc="Title of a group/tag whose policies might restrict web contents which would be visible otherwise (e.g. forced SafeSearch).">
471 Filtering
472 </message>
473 <message name="IDS_POLICY_RISK_TAG_LOCAL_DATA_ACCESS" desc="Title of a group/tag whose policies might allow storage of user data to local drives where others might access them.">
474 Local Data Access
475 </message>
476 <message name="IDS_POLICY_RISK_TAG_GOOGLE_SHARING" desc="Title of a group/tag whose policies enable functionality that might share user data with trusted Google services.">
477 Sharing with Google
478 </message>
Andreea Costinas22de4522018-12-28 14:47:29479 <message name="IDS_POLICY_SHOW_EXPANDED_STATUS" desc="Text for the link that shows the policy status. Used when the policy status is too long to be always visible.">
480 Show status
481 </message>
482 <message name="IDS_POLICY_HIDE_EXPANDED_STATUS" desc="Text for the link that hides the policy status. Used when the policy status is too long to be always visible.">
483 Hide status
484 </message>
[email protected]dae12fe92013-11-26 14:57:34485</grit-part>