OLD | NEW |
1 <?xml version="1.0" encoding="utf-8"?> | 1 <?xml version="1.0" encoding="utf-8"?> |
2 | 2 |
3 <!-- | 3 <!-- |
4 Strings for the extensions module. Used mostly for low-level error messages. | 4 Strings for the extensions module. Used mostly for low-level error messages. |
5 Where possible new strings should be kept in Chrome and the extensions module | 5 Where possible new strings should be kept in Chrome and the extensions module |
6 should return an error code, message flag, etc. | 6 should return an error code, message flag, etc. |
7 --> | 7 --> |
8 | 8 |
9 <grit latest_public_release="0" current_release="1" | 9 <grit latest_public_release="0" current_release="1" |
10 source_lang_id="en" enc_check="möl"> | 10 source_lang_id="en" enc_check="möl"> |
(...skipping 422 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
433 <message name="IDS_EXTENSION_WARNING_RELOAD_TOO_FREQUENT" desc="Warning me
ssage which indates that an extension got stuck in a reload loop."> | 433 <message name="IDS_EXTENSION_WARNING_RELOAD_TOO_FREQUENT" desc="Warning me
ssage which indates that an extension got stuck in a reload loop."> |
434 This extension reloaded itself too frequently. | 434 This extension reloaded itself too frequently. |
435 </message> | 435 </message> |
436 <message name="IDS_EXTENSION_PROMPT_WARNING_U2F_DEVICES" desc="Warning mes
sage which indicates that an extension has access to Universal 2nd Factor device
s."> | 436 <message name="IDS_EXTENSION_PROMPT_WARNING_U2F_DEVICES" desc="Warning mes
sage which indicates that an extension has access to Universal 2nd Factor device
s."> |
437 Access your Universal 2nd Factor devices | 437 Access your Universal 2nd Factor devices |
438 </message> | 438 </message> |
439 <message name="IDS_EXTENSION_PROMPT_WARNING_WEB_CONNECTABLE" desc="Permiss
ion string for allowing websites to connect to extensions."> | 439 <message name="IDS_EXTENSION_PROMPT_WARNING_WEB_CONNECTABLE" desc="Permiss
ion string for allowing websites to connect to extensions."> |
440 Communicate with cooperating websites | 440 Communicate with cooperating websites |
441 </message> | 441 </message> |
442 | 442 |
| 443 <!-- Install related messages. Please keep alphabetized. --> |
| 444 <message name="IDS_EXTENSION_INSTALL_PROCESS_CRASHED" desc="Error message
in case package fails to install because a utility process crashed."> |
| 445 Could not install package because a utility process crashed. Try restart
ing Chrome and trying again. |
| 446 </message> |
| 447 <message name="IDS_EXTENSION_PACKAGE_ERROR_CODE" desc="Error message in ca
ses where we fail to install the extension because the crx file is invalid. For
example, because the crx header or signature is invalid."> |
| 448 Package is invalid: '<ph name="ERROR_CODE">$1<ex>error</ex></ph>'. |
| 449 </message> |
| 450 <message name="IDS_EXTENSION_PACKAGE_ERROR_MESSAGE" desc="The cases where
we get an error message string back from some other component. The message might
be in English, but these are typically developer errors, and the extension SDK
is English."> |
| 451 Package is invalid. Details: '<ph name="ERROR_MESSAGE">$1<ex>error</ex><
/ph>'. |
| 452 </message> |
| 453 <message name="IDS_EXTENSION_PACKAGE_INSTALL_ERROR" desc="Error message in
case package fails to install because of some problem with the filesystem."> |
| 454 Could not install package: '<ph name="ERROR_CODE">$1<ex>error</ex></ph>' |
| 455 </message> |
| 456 <if expr="is_win"> |
| 457 <message name="IDS_EXTENSION_UNPACK_FAILED" desc="On windows, it is poss
ible to mount a disk without the root of that disk having a drive letter. The s
andbox does not support this. See crbug/49530 ."> |
| 458 Can not unpack extension. To safely unpack an extension, there must b
e a path to your profile directory that starts with a drive letter and does not
contain a junction, mount point, or symlink. No such path exists for your profi
le. |
| 459 </message> |
| 460 </if> |
| 461 <if expr="not is_win"> |
| 462 <message name="IDS_EXTENSION_UNPACK_FAILED" desc=""> |
| 463 Can not unpack extension. To safely unpack an extension, there must b
e a path to your profile directory that does not contain a symlink. No such pat
h exists for your profile. |
| 464 </message> |
| 465 </if> |
443 </messages> | 466 </messages> |
444 </release> | 467 </release> |
445 </grit> | 468 </grit> |
OLD | NEW |