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

Unified Diff: chrome/browser/ui/webui/chromeos/login/update_screen_handler.cc

Issue 10854071: New OOBE design: minor content update (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: . Created 8 years, 4 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 | « chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
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",
« no previous file with comments | « chrome/browser/ui/webui/chromeos/login/network_screen_handler.cc ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698