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

Unified Diff: chrome/browser/resources/options2/chromeos/bluetooth_device_list.js

Issue 10391044: retry 136193 - convert localStrings to loadTimeData for options page (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: sync Created 8 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/options2/chromeos/bluetooth_device_list.js
diff --git a/chrome/browser/resources/options2/chromeos/bluetooth_device_list.js b/chrome/browser/resources/options2/chromeos/bluetooth_device_list.js
index b752f7a3f42929ff52e1fd0fc0280f9e4350f245..770c86babd9cff8377e6ab2b8646ed9667951d93 100644
--- a/chrome/browser/resources/options2/chromeos/bluetooth_device_list.js
+++ b/chrome/browser/resources/options2/chromeos/bluetooth_device_list.js
@@ -69,7 +69,7 @@ cr.define('options.system.bluetooth', function() {
// Update label for devices that are paired but not connected.
if (this.paired) {
content = content + ' (' +
- templateData['bluetoothDeviceNotConnected'] + ')';
+ loadTimeData.getString('bluetoothDeviceNotConnected') + ')';
}
label.textContent = content;
this.contentElement.appendChild(label);

Powered by Google App Engine
This is Rietveld 408576698