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

Unified Diff: chrome/browser/resources/settings/bluetooth_page/bluetooth_page.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
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html
index b9216525bb081f65f5e63e7a6b2b815edc1504d6..91d7f346f929ded67b3d3b071c410c9fd259fa0d 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_page.html
@@ -46,7 +46,7 @@
<div class="settings-box first">
<div class="layout horizontal center flex">
<iron-icon icon="settings:bluetooth"></iron-icon>
- <span class="flex" i18n-content="bluetoothEnable"></span>
+ <span class="flex">$i18n{bluetoothEnable}</span>
<cr-expand-button id="expandListButton"
hidden$="[[!bluetoothEnabled]]"
expanded="{{deviceListExpanded}}">
@@ -67,13 +67,13 @@
</bluetooth-device-list-item>
</template>
<div class="no-devices layout horizontal center"
- hidden$="[[haveDevices_(deviceList.splices)]]"
- i18n-content="bluetoothNoDevices">
+ hidden$="[[haveDevices_(deviceList.splices)]]">
+ $i18n{bluetoothNoDevices}
</div>
</div>
<div class="settings-box" hidden$="[[!bluetoothEnabled]]">
- <paper-button i18n-content="bluetoothAddDevice"
- class="primary-button" on-tap="onAddDeviceTap_">
+ <paper-button class="primary-button" on-tap="onAddDeviceTap_">
+ $i18n{bluetoothAddDevice}
</paper-button>
</div>
</iron-collapse>

Powered by Google App Engine
This is Rietveld 408576698