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

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html

Issue 1970923002: [MD settings] update i18n replacements in bluetooth settings (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Created 4 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 side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
index ae8a66e8c392a22b93e3feedbc77f47bdedcd728..515fc6867fdcbcc917194bbf2b9bb930c71d5d8a 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_add_device_dialog.html
@@ -13,8 +13,8 @@
<style include="bluetooth-dialog-shared"></style>
<div id="dialogOuterDiv" class="layout vertical flex">
<div id="dialogHeaderDiv" class="settings-box layout horizontal">
- <span id="dialogTitle" class="flex"
- i18n-content="bluetoothAddDevicePageTitle">
+ <span id="dialogTitle" class="flex">
+ $i18n{bluetoothAddDevicePageTitle}
</span>
<paper-icon-button icon="settings:close" on-tap="onCancelTap_"
id="close">
@@ -23,8 +23,8 @@
<div class="settings-box flex">
<div id="dialogDeviceList" class="settings-box layout vertical"
on-device-event="onDeviceEvent_">
- <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]"
- i18n-content="bluetoothNoDevices">
+ <span class="no-devices" hidden$="[[haveDevices_(deviceList)]]">
+ $i18n{bluetoothNoDevices}
</span>
<iron-selector class="flex">
<template is="dom-repeat" items="[[deviceList]]"
@@ -40,11 +40,10 @@
hidden$="[[!adapterState.discovering]]">
<paper-spinner active="[[adapterState.discovering]]">
</paper-spinner>
- <span i18n-content="bluetoothScanning"></span>
+ $i18n{bluetoothScanning}
</div>
<paper-button id="cancel" class="end-justified"
- i18n-content="cancel" on-tap="onCancelTap_">
- </paper-button>
+ on-tap="onCancelTap_">$i18n{cancel}</paper-button>
</div>
</div>
</template>
« no previous file with comments | « no previous file | chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698