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

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

Issue 2939233002: CUPS: Modify the dialog title for manufacturer-and-model dialog. (Closed)
Patch Set: nit. Rebase. Created 3 years, 6 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/polymer.html"> 1 <link rel="import" href="chrome://resources/html/polymer.html">
2 2
3 <link rel="import" href="chrome://resources/html/md_select_css.html"> 3 <link rel="import" href="chrome://resources/html/md_select_css.html">
4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html"> 4 <link rel="import" href="chrome://resources/html/web_ui_listener_behavior.html">
5 <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-button/paper-butt on.html">
6 <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-input/paper-input .html">
7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html"> 7 <link rel="import" href="chrome://resources/polymer/v1_0/paper-spinner/paper-spi nner.html">
8 <link rel="import" href="../i18n_setup.html"> 8 <link rel="import" href="../i18n_setup.html">
9 <link rel="import" href="cups_add_printer_dialog_util.html"> 9 <link rel="import" href="cups_add_printer_dialog_util.html">
10 <link rel="import" href="cups_printers_browser_proxy.html"> 10 <link rel="import" href="cups_printers_browser_proxy.html">
(...skipping 273 matching lines...) Expand 10 before | Expand all | Expand 10 after
284 padding: 10px 20px; 284 padding: 10px 20px;
285 } 285 }
286 286
287 #browseButton { 287 #browseButton {
288 -webkit-margin-start: 5px; 288 -webkit-margin-start: 5px;
289 color: black; 289 color: black;
290 font-size: inherit; 290 font-size: inherit;
291 } 291 }
292 </style> 292 </style>
293 <add-printer-dialog> 293 <add-printer-dialog>
294 <div class="dialog-title">$i18n{addPrintersManuallyTitle}</div> 294 <div class="dialog-title">$i18n{selectManufacturerAndModelTitle}</div>
295 <div class="dialog-body"> 295 <div class="dialog-body">
296 <div class="settings-box two-line"> 296 <div class="settings-box two-line">
297 <div class="start"> 297 <div class="start">
298 <div class="label">$i18n{printerManufacturer}</div> 298 <div class="label">$i18n{printerManufacturer}</div>
299 <div class="secondary"> 299 <div class="secondary">
300 <drop-down-search-box items="[[manufacturerList]]" 300 <drop-down-search-box items="[[manufacturerList]]"
301 selected-item="{{newPrinter.printerManufacturer}}"> 301 selected-item="{{newPrinter.printerManufacturer}}">
302 </drop-down-search-box> 302 </drop-down-search-box>
303 </div> 303 </div>
304 </div> 304 </div>
(...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after
397 <!-- Manufacturer and Model Dialog --> 397 <!-- Manufacturer and Model Dialog -->
398 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp> 398 <template is="dom-if" if="[[showManufacturerDialog_]]" restamp>
399 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}" 399 <add-printer-manufacturer-model-dialog new-printer="{{newPrinter}}"
400 setup-failed="[[setupFailed]]"> 400 setup-failed="[[setupFailed]]">
401 </add-printer-manufacturer-model-dialog> 401 </add-printer-manufacturer-model-dialog>
402 </template> 402 </template>
403 403
404 </template> 404 </template>
405 <script src="cups_add_printer_dialog.js"></script> 405 <script src="cups_add_printer_dialog.js"></script>
406 </dom-module> 406 </dom-module>
OLDNEW
« no previous file with comments | « chrome/app/settings_strings.grdp ('k') | chrome/browser/resources/settings/printing_page/cups_add_printer_dialog.js » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698