Index: chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc |
diff --git a/chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc b/chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc |
index 9eb7564caed24f0d8d95a9b379cee77f8b702767..7e18e5c70b5e900831a30ca4a1f709500948d606 100644 |
--- a/chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc |
+++ b/chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc |
@@ -34,12 +34,18 @@ UpdateScreenHandler::~UpdateScreenHandler() { |
void UpdateScreenHandler::GetLocalizedStrings( |
DictionaryValue *localized_strings) { |
+ const string16 short_product_name = |
+ l10n_util::GetStringUTF16(IDS_SHORT_PRODUCT_NAME); |
+ localized_strings->SetString("checkingForUpdatesMsg", |
+ l10n_util::GetStringFUTF16(IDS_CHECKING_FOR_UPDATE_MSG, |
+ short_product_name)); |
localized_strings->SetString("updateScreenTitle", |
l10n_util::GetStringUTF16(IDS_UPDATE_SCREEN_TITLE)); |
localized_strings->SetString("checkingForUpdates", |
l10n_util::GetStringUTF16(IDS_CHECKING_FOR_UPDATES)); |
localized_strings->SetString("installingUpdateDesc", |
- l10n_util::GetStringUTF16(IDS_INSTALLING_UPDATE_DESC)); |
+ l10n_util::GetStringFUTF16(IDS_UPDATE_MSG, |
+ short_product_name, short_product_name)); |
localized_strings->SetString("downloadingTimeLeftLong", |
l10n_util::GetStringUTF16(IDS_DOWNLOADING_TIME_LEFT_LONG)); |
localized_strings->SetString("downloadingTimeLeftStatusOneHour", |