Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(215)

Side by Side Diff: extensions/extensions_strings.grd

Issue 503033002: Move ExtensionWarningService and ExtensionsWarningSet to extensions. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@3_web_view_internal
Patch Set: Rename. Created 6 years, 3 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
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 280 matching lines...) Expand 10 before | Expand all | Expand 10 after
291 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE" desc="Permission s tring for access to a specific USB device."> 291 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE" desc="Permission s tring for access to a specific USB device.">
292 Access the USB device <ph name="PRODUCT_NAME">$1<ex>SoundKnob</ex></ph> from <ph name="VENDOR_NAME">$2<ex>Griffin Technology</ex></ph> 292 Access the USB device <ph name="PRODUCT_NAME">$1<ex>SoundKnob</ex></ph> from <ph name="VENDOR_NAME">$2<ex>Griffin Technology</ex></ph>
293 </message> 293 </message>
294 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE_MISSING_PRODUCT" de sc="Permission string for access to a specific USB device when a product name ca nnot be established for a USB device."> 294 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE_MISSING_PRODUCT" de sc="Permission string for access to a specific USB device when a product name ca nnot be established for a USB device.">
295 Access the USB device from <ph name="VENDOR_NAME">$1<ex>Griffin Technolo gy</ex></ph> 295 Access the USB device from <ph name="VENDOR_NAME">$1<ex>Griffin Technolo gy</ex></ph>
296 </message> 296 </message>
297 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE_MISSING_VENDOR" des c="Permission string for access to a specific USB device when a vendor name cann ot be established for a USB device."> 297 <message name="IDS_EXTENSION_PROMPT_WARNING_USB_DEVICE_MISSING_VENDOR" des c="Permission string for access to a specific USB device when a vendor name cann ot be established for a USB device.">
298 Access the USB device 298 Access the USB device
299 </message> 299 </message>
300 300
301 <!-- Global error messages for extensions. Please keep alphabetized. -->
302 <message name="IDS_EXTENSION_WARNINGS_NETWORK_DELAY" desc="Warning message indicating that an extension caused excessive network delays for web requests">
303 This extension is slowing down <ph name="PRODUCT_NAME">$1<ex>Google Chro me</ex></ph>. You should disable it to restore <ph name="PRODUCT_NAME">$1<ex>Goo gle Chrome</ex></ph>'s performance.
304 </message>
305 <message name="IDS_EXTENSION_WARNINGS_NETWORK_CONFLICT" desc="Warning mess age which indicates that two or more extensions tried to modify a network reques t in a conflicting way and the modification of this extension was ignored">
306 This extension failed to modify a network request because the modificati on conflicted with another extension.
307 </message>
308 <message name="IDS_EXTENSION_WARNINGS_REDIRECT_CONFLICT" desc="Warning mes sage indicating that two extensions tried to redirect to different destinations" >
309 This extension failed to redirect a network request to <ph name="ATTEMPT ED_REDIRECT_DESTINATION">$1<ex>http://www.google.com</ex></ph> because another e xtension (<ph name="EXTENSION_NAME">$2<ex>My Cool Extension</ex></ph>) redirecte d it to <ph name="ACTUAL_REDIRECT_DESTINATION">$3<ex>https://www.google.com</ex> </ph>.
310 </message>
311 <message name="IDS_EXTENSION_WARNINGS_REQUEST_HEADER_CONFLICT" desc="Warni ng message which indicates that two or more extensions tried to modify a network request in a conflicting way and the modification of this extension was ignored ">
312 This extension failed to modify the request header "<ph name="HEADER_NAM E">$1<ex>User-Agent</ex></ph>" of a network request because the modification con flicted with another extension (<ph name="EXTENSION_NAME">$2<ex>My Cool Extensio n</ex></ph>).
313 </message>
314 <message name="IDS_EXTENSION_WARNINGS_RESPONSE_HEADER_CONFLICT" desc="Warn ing message which indicates that two or more extensions tried to modify a networ k request in a conflicting way and the modification of this extension was ignore d">
315 This extension failed to modify the response header "<ph name="HEADER_NA ME">$1<ex>User-Agents</ex></ph>" of a network request because the modification c onflicted with another extension (<ph name="EXTENSION_NAME">$2<ex>My Cool Extens ion</ex></ph>).
316 </message>
317 <message name="IDS_EXTENSION_WARNINGS_CREDENTIALS_CONFLICT" desc="Warning message which indicates that two or more extensions tried to modify a network re quest in a conflicting way and the modification of this extension was ignored">
318 This extension failed to provide credentials to a network request becaus e another extension (<ph name="EXTENSION_NAME">$1<ex>My Cool Extension</ex></ph> ) provided different credentials.
319 </message>
320 <message name="IDS_EXTENSION_WARNINGS_DOWNLOAD_FILENAME_CONFLICT" desc="Wa rning message which indicates that two or more extensions tried to determine the filename of a downloaded file in a conflicting way and the modification of this extension was ignored">
321 This extension failed to name the download "<ph name="ATTEMPTED_FILENAME ">$1<ex>apple.png</ex></ph>" because another extension (<ph name="EXTENSION_NAME ">$2<ex>My Cool Extension</ex></ph>) determined a different filename "<ph name=" ACTUAL_FILENAME">$3<ex>banana.png</ex></ph>".
322 </message>
323 <message name="IDS_EXTENSION_WARNING_RELOAD_TOO_FREQUENT" desc="Warning me ssage which indates that an extension got stuck in a reload loop.">
324 This extension reloaded itself too frequently.
325 </message>
326
301 </messages> 327 </messages>
302 </release> 328 </release>
303 </grit> 329 </grit>
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698