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

Side by Side Diff: extensions/extensions_strings.grd

Issue 1098823003: Separate USB device permissions prompt logic into subclasses. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Address jyasskin@'s comments. Created 5 years, 8 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
« no previous file with comments | « extensions/browser/api/usb/usb_api.cc ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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 323 matching lines...) Expand 10 before | Expand all | Expand 10 after
334 Exchange data with the device named <ph name="HOSTNAME">$1<ex>foo.exampl e.com</ex></ph> 334 Exchange data with the device named <ph name="HOSTNAME">$1<ex>foo.exampl e.com</ex></ph>
335 </message> 335 </message>
336 <message name="IDS_EXTENSION_PROMPT_WARNING_SOCKET_SPECIFIC_HOSTS" desc="P ermission string for access to multiple specific devices on the local network or internet."> 336 <message name="IDS_EXTENSION_PROMPT_WARNING_SOCKET_SPECIFIC_HOSTS" desc="P ermission string for access to multiple specific devices on the local network or internet.">
337 Exchange data with the devices named: <ph name="HOSTNAMES">$1<ex>foo.exa mple.com bar.example.com</ex></ph> 337 Exchange data with the devices named: <ph name="HOSTNAMES">$1<ex>foo.exa mple.com bar.example.com</ex></ph>
338 </message> 338 </message>
339 339
340 <!-- Device API strings. Please keep alphabetized. --> 340 <!-- Device API strings. Please keep alphabetized. -->
341 <message name="IDS_DEVICE_PERMISSIONS_DEVICE_NAME" desc="String describing a device in a list of devices."> 341 <message name="IDS_DEVICE_PERMISSIONS_DEVICE_NAME" desc="String describing a device in a list of devices.">
342 <ph name="PRODUCT_NAME">$1<ex>SoundKnob</ex></ph> from <ph name="VENDOR_ NAME">$2<ex>Griffin Technology</ex></ph> 342 <ph name="PRODUCT_NAME">$1<ex>SoundKnob</ex></ph> from <ph name="VENDOR_ NAME">$2<ex>Griffin Technology</ex></ph>
343 </message> 343 </message>
344 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_TITLE_SINGLE" desc="Title of the device selection dialog when the app wants only one device selected."> 344 <message name="IDS_USB_DEVICE_PERMISSIONS_PROMPT_TITLE_SINGLE" desc="Title of the USB device selection dialog when the app wants only one device selected. ">
345 Select a USB device 345 Select a USB device
346 </message> 346 </message>
347 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_TITLE_MULTIPLE" desc="Title o f the device selection dialog when the app will accept one or more selected devi ces."> 347 <message name="IDS_USB_DEVICE_PERMISSIONS_PROMPT_TITLE_MULTIPLE" desc="Tit le of the USB device selection dialog when the app will accept one or more selec ted devices.">
348 Select USB devices 348 Select USB devices
349 </message> 349 </message>
350 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_SINGLE" desc="Instructions as king the user to select one device for use with an app."> 350 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_SINGLE" desc="Instructions as king the user to select one device for use with an app.">
351 The application "<ph name="APP_NAME">$1<ex>Chrome Dev Editor</ex></ph>" is requesting access to one of your devices. 351 The application "<ph name="APP_NAME">$1<ex>Chrome Dev Editor</ex></ph>" is requesting access to one of your devices.
352 </message> 352 </message>
353 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_MULTIPLE" desc="Instructions asking the user to select one or more devices for use with an app."> 353 <message name="IDS_DEVICE_PERMISSIONS_PROMPT_MULTIPLE" desc="Instructions asking the user to select one or more devices for use with an app.">
354 The application "<ph name="APP_NAME">$1<ex>Chrome Dev Editor</ex></ph>" is requesting access to one or more of your devices. 354 The application "<ph name="APP_NAME">$1<ex>Chrome Dev Editor</ex></ph>" is requesting access to one or more of your devices.
355 </message> 355 </message>
356 <message name="IDS_DEVICE_UNKNOWN_PRODUCT" desc="String used when no human -readable product name is available for a device."> 356 <message name="IDS_DEVICE_UNKNOWN_PRODUCT" desc="String used when no human -readable product name is available for a device.">
357 Product <ph name="PRODUCT_ID">$1<ex>0x1234</ex></ph> 357 Product <ph name="PRODUCT_ID">$1<ex>0x1234</ex></ph>
(...skipping 118 matching lines...) Expand 10 before | Expand all | Expand 10 after
476 <!-- Utility process names. Please keep alphabetized. --> 476 <!-- Utility process names. Please keep alphabetized. -->
477 <message name="IDS_UTILITY_PROCESS_EXTENSION_UNPACKER_NAME" desc="The name of the utility process used for unpacking extensions."> 477 <message name="IDS_UTILITY_PROCESS_EXTENSION_UNPACKER_NAME" desc="The name of the utility process used for unpacking extensions.">
478 Extension Unpacker 478 Extension Unpacker
479 </message> 479 </message>
480 <message name="IDS_UTILITY_PROCESS_MANIFEST_PARSER_NAME" desc="The name of the utility process used for parsing extension manifests."> 480 <message name="IDS_UTILITY_PROCESS_MANIFEST_PARSER_NAME" desc="The name of the utility process used for parsing extension manifests.">
481 Extension Manifest Parser 481 Extension Manifest Parser
482 </message> 482 </message>
483 </messages> 483 </messages>
484 </release> 484 </release>
485 </grit> 485 </grit>
OLDNEW
« no previous file with comments | « extensions/browser/api/usb/usb_api.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698