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

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

Issue 1987443002: MD Settings: convert some bluetooth i18n-content to $i18n{} (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: wrap 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 | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
diff --git a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
index 9ea07d027602ddc0c049802cc00a68de41c5bfaa..252ef143591918ef91a7bccaa759b795d86652a7 100644
--- a/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
+++ b/chrome/browser/resources/settings/bluetooth_page/bluetooth_device_list_item.html
@@ -35,19 +35,20 @@
<iron-icon icon="cr:check" hidden$="[[!device.connected]]">
</iron-icon>
<span class="flex"></span>
- <span hidden$="[[!device.connecting]]"
- i18n-content="bluetoothConnecting"></span>
+ <span hidden$="[[!device.connecting]]">$i18n{bluetoothConnecting}</span>
<div hidden$="[[!device.paired]]" on-tap="doNothing_">
<paper-icon-button icon="cr:more-vert" toggles
active="{{dropdownOpened}}">
</paper-icon-button>
<iron-dropdown opened="{{dropdownOpened}}" on-tap="menuSelected_">
<div class="dropdown-content">
- <paper-item id="connect" i18n-content="bluetoothConnect"
- hidden$="[[device.connected]]"></paper-item>
- <paper-item id="disconnect" i18n-content="bluetoothDisconnect"
- hidden$="[[!device.connected]]"></paper-item>
- <paper-item id="remove" i18n-content="bluetoothRemove"></paper-item>
+ <paper-item id="connect" hidden$="[[device.connected]]">
+ $i18n{bluetoothConnect}
+ </paper-item>
+ <paper-item id="disconnect" hidden$="[[!device.connected]]">
+ $i18n{bluetoothDisconnect}
+ </paper-item>
+ <paper-item id="remove">$i18n{bluetoothRemove}</paper-item>
</div>
</iron-dropdown>
</div>
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698