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

Side by Side Diff: chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.html

Issue 2871643003: [CUPS] Remove the string in manufaturer-model-dialog. (Closed)
Patch Set: Created 3 years, 7 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 <link rel="import" href="chrome://resources/html/md_select_css.html"> 1 <link rel="import" href="chrome://resources/html/md_select_css.html">
2 <link rel="import" href="chrome://resources/html/polymer.html"> 2 <link rel="import" href="chrome://resources/html/polymer.html">
3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 3 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html"> 4 <link rel="import" href="chrome://resources/polymer/v1_0/paper-button/paper-butt on.html">
5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html"> 5 <link rel="import" href="chrome://resources/polymer/v1_0/paper-input/paper-input .html">
6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 6 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
7 <link rel="import" href="../i18n_setup.html"> 7 <link rel="import" href="../i18n_setup.html">
8 <link rel="import" href="cups_add_printer_dialog_util.html"> 8 <link rel="import" href="cups_add_printer_dialog_util.html">
9 <link rel="import" href="cups_printers_browser_proxy.html"> 9 <link rel="import" href="cups_printers_browser_proxy.html">
10 <link rel="import" href="../settings_shared_css.html"> 10 <link rel="import" href="../settings_shared_css.html">
(...skipping 257 matching lines...) Expand 10 before | Expand all | Expand 10 after
268 } 268 }
269 269
270 #browseButton { 270 #browseButton {
271 color: black; 271 color: black;
272 font-size: inherit; 272 font-size: inherit;
273 } 273 }
274 </style> 274 </style>
275 <add-printer-dialog> 275 <add-printer-dialog>
276 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div> 276 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div>
277 <div class="dialog-body"> 277 <div class="dialog-body">
278 <div class="settings-box first">
279 $i18n{selectManufacturerModelMessage}
280 </div>
281 <div class="settings-box two-line"> 278 <div class="settings-box two-line">
282 <div class="start"> 279 <div class="start">
283 <div class="label">$i18n{printerManufacturer}</div> 280 <div class="label">$i18n{printerManufacturer}</div>
284 <div class="secondary"> 281 <div class="secondary">
285 <drop-down-search-box items="[[manufacturerList]]" 282 <drop-down-search-box items="[[manufacturerList]]"
286 selected-item="{{newPrinter.printerManufacturer}}"> 283 selected-item="{{newPrinter.printerManufacturer}}">
287 </drop-down-search-box> 284 </drop-down-search-box>
288 </div> 285 </div>
289 </div> 286 </div>
290 </div> 287 </div>
(...skipping 96 matching lines...) Expand 10 before | Expand all | Expand 10 after
387 <!-- Manufacturer and Model Dialog --> 384 <!-- Manufacturer and Model Dialog -->
388 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> 385 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp>
389 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" 386 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}"
390 setup-failed="[[setupFailed]]"> 387 setup-failed="[[setupFailed]]">
391 </add-printer-manufacturer-model-dialog> 388 </add-printer-manufacturer-model-dialog>
392 </template> 389 </template>
393 390
394 </template> 391 </template>
395 <script src="cups_add_printer_dialog.js"></script> 392 <script src="cups_add_printer_dialog.js"></script>
396 </dom-module> 393 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/ui/webui/settings/md_settings_localized_strings_provider.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698