summaryrefslogtreecommitdiffstats
path: root/chrome
diff options
context:
space:
mode:
authorkevers@chromium.org <kevers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-19 21:23:13 +0000
committerkevers@chromium.org <kevers@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2012-01-19 21:23:13 +0000
commit9a7d59e6edb021156afd5cf3040355055e7427e9 (patch)
tree22d6959e098faa74701bfec9cda987a9b00ba616 /chrome
parenta8daf3387f42c6223447660b3210637d1feccc36 (diff)
downloadchromium_src-9a7d59e6edb021156afd5cf3040355055e7427e9.zip
chromium_src-9a7d59e6edb021156afd5cf3040355055e7427e9.tar.gz
chromium_src-9a7d59e6edb021156afd5cf3040355055e7427e9.tar.bz2
Update string for initial bluetooth devices list
We're not looking for devices at this point, so just say "No devices" rather than "No devices found" BUG=none TEST=built and verified Change-Id: I144bc38bd5d643347afb375f374a37f05ee69753 Review URL: https://chromiumcodereview.appspot.com/9251032 Patch from Scott James Remnant <keybuk@chromium.org>. git-svn-id: svn://svn.chromium.org/chrome/trunk/src@118362 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome')
-rw-r--r--chrome/app/generated_resources.grd3
-rw-r--r--chrome/browser/resources/options/chromeos/system_options.html2
-rw-r--r--chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc3
-rw-r--r--chrome/browser/ui/webui/options2/chromeos/bluetooth_options_handler2.cc3
4 files changed, 10 insertions, 1 deletions
diff --git a/chrome/app/generated_resources.grd b/chrome/app/generated_resources.grd
index b2475dd..15eeca1 100644
--- a/chrome/app/generated_resources.grd
+++ b/chrome/app/generated_resources.grd
@@ -12105,6 +12105,9 @@ changed since last sign in
<message name="IDS_OPTIONS_SETTINGS_BLUETOOTH_SCANNING">
Searching for devices...
</message>
+ <message name="IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES">
+ No devices
+ </message>
<message name="IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES_FOUND">
No devices found
</message>
diff --git a/chrome/browser/resources/options/chromeos/system_options.html b/chrome/browser/resources/options/chromeos/system_options.html
index 6adb6ab..8699938 100644
--- a/chrome/browser/resources/options/chromeos/system_options.html
+++ b/chrome/browser/resources/options/chromeos/system_options.html
@@ -87,7 +87,7 @@
<list id="bluetooth-paired-devices-list"></list>
<div id="bluetooth-paired-devices-list-empty-placeholder"
class="bluetooth-empty-list-label" hidden>
- <span i18n-content="bluetoothNoDevicesFound"></span>
+ <span i18n-content="bluetoothNoDevices"></span>
</div>
</div>
<div id="bluetooth-button-group">
diff --git a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
index d09123e..e1f5a5c 100644
--- a/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/bluetooth_options_handler.cc
@@ -73,6 +73,9 @@ void BluetoothOptionsHandler::GetLocalizedValues(
IDS_OPTIONS_SETTINGS_BLUETOOTH_ADD_DEVICE_TITLE));
localized_strings->SetString("findBluetoothDevices",
l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_FIND_BLUETOOTH_DEVICES));
+ localized_strings->SetString("bluetoothNoDevices",
+ l10n_util::GetStringUTF16(
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES));
localized_strings->SetString("bluetoothNoDevicesFound",
l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES_FOUND));
diff --git a/chrome/browser/ui/webui/options2/chromeos/bluetooth_options_handler2.cc b/chrome/browser/ui/webui/options2/chromeos/bluetooth_options_handler2.cc
index 50b9fba..aa5f5cf 100644
--- a/chrome/browser/ui/webui/options2/chromeos/bluetooth_options_handler2.cc
+++ b/chrome/browser/ui/webui/options2/chromeos/bluetooth_options_handler2.cc
@@ -74,6 +74,9 @@ void BluetoothOptionsHandler::GetLocalizedValues(
IDS_OPTIONS_SETTINGS_BLUETOOTH_ADD_DEVICE_TITLE));
localized_strings->SetString("findBluetoothDevices",
l10n_util::GetStringUTF16(IDS_OPTIONS_SETTINGS_FIND_BLUETOOTH_DEVICES));
+ localized_strings->SetString("bluetoothNoDevices",
+ l10n_util::GetStringUTF16(
+ IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES));
localized_strings->SetString("bluetoothNoDevicesFound",
l10n_util::GetStringUTF16(
IDS_OPTIONS_SETTINGS_BLUETOOTH_NO_DEVICES_FOUND));