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

Unified Diff: chrome/browser/ui/webui/options/chromeos/about_page_handler.cc

Issue 9320056: Help: Implement the initial version of the cross-platform help/about page. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src
Patch Set: String fix. Created 8 years, 11 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/ui/webui/options/chromeos/about_page_handler.cc
diff --git a/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc b/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
index 9c9daffa3c5016bec26711faf45642a9fc99c14c..11f2f4d1ad0aee9d188481e2886750d74c09aad1 100644
--- a/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
+++ b/chrome/browser/ui/webui/options/chromeos/about_page_handler.cc
@@ -173,7 +173,7 @@ void AboutPageHandler::GetLocalizedValues(DictionaryValue* localized_strings) {
// license
- std::string text = l10n_util::GetStringUTF8(IDS_ABOUT_VERSION_LICENSE);
+ std::string text = l10n_util::GetStringUTF8(IDS_ABOUT_OLD_VERSION_LICENSE);
bool chromium_url_appears_first =
text.find(kBeginLinkChr) < text.find(kBeginLinkOss);
@@ -346,7 +346,7 @@ void AboutPageHandler::UpdateStatus(
switch (status.status) {
case UpdateEngineClient::UPDATE_STATUS_IDLE:
if (!sticky_) {
- message = l10n_util::GetStringUTF16(IDS_UPGRADE_ALREADY_UP_TO_DATE);
+ message = l10n_util::GetStringUTF16(IDS_UPGRADE_UP_TO_DATE);
enabled = true;
}
break;

Powered by Google App Engine
This is Rietveld 408576698