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

Unified Diff: chrome/browser/chromeos/login/background_view.cc

Issue 2864033: Make the localized product name 'ungarbled'. ... (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: '' Created 10 years, 6 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/browser/chromeos/login/background_view.cc
===================================================================
--- chrome/browser/chromeos/login/background_view.cc (revision 51404)
+++ chrome/browser/chromeos/login/background_view.cc (working copy)
@@ -8,6 +8,7 @@
#include "app/resource_bundle.h"
#include "app/x11_util.h"
#include "base/string_util.h"
+#include "base/utf_string_conversions.h"
#include "chrome/browser/chromeos/login/helper.h"
#include "chrome/browser/chromeos/status/clock_menu_button.h"
#include "chrome/browser/chromeos/status/feedback_menu_button.h"
@@ -202,12 +203,13 @@
void BackgroundView::OnVersion(
VersionLoader::Handle handle, std::string version) {
+ // TODO(jungshik): Is string concatenation OK here?
std::string version_text = l10n_util::GetStringUTF8(IDS_PRODUCT_NAME);
version_text += ' ';
version_text += l10n_util::GetStringUTF8(IDS_VERSION_FIELD_PREFIX);
version_text += ' ';
version_text += version;
- os_version_label_->SetText(ASCIIToWide(version_text));
+ os_version_label_->SetText(UTF8ToWide(version_text));
}
void BackgroundView::OnBootTimes(
@@ -239,6 +241,7 @@
boot_times.pre_startup,
boot_times.system);
}
+ // Use UTF8ToWide once this string is loclized.
tfarina 2010/07/12 16:28:35 nit: localized
boot_times_label_->SetText(ASCIIToWide(boot_times_text));
}
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698