Chromium Code Reviews| Index: chrome/browser/views/about_chrome_view.cc |
| =================================================================== |
| --- chrome/browser/views/about_chrome_view.cc (revision 11541) |
| +++ chrome/browser/views/about_chrome_view.cc (working copy) |
| @@ -761,10 +761,14 @@ |
| !installed_version->IsHigherThan(running_version.get())) { |
| UserMetrics::RecordAction(L"UpgradeCheck_AlreadyUpToDate", profile_); |
| check_button_status_ = CHECKBUTTON_HIDDEN; |
| - update_label_.SetText( |
| + std::wstring update_label_text = |
| l10n_util::GetStringF(IDS_UPGRADE_ALREADY_UP_TO_DATE, |
| l10n_util::GetString(IDS_PRODUCT_NAME), |
| - current_version_)); |
| + current_version_); |
| + if (l10n_util::GetTextDirection() == l10n_util::RIGHT_TO_LEFT) { |
| + update_label_text.push_back(static_cast<wchar_t>(l10n_util::kLeftToRightMark)); |
|
idana
2009/03/26 06:06:17
Line exceeds 80 characters.
|
| + } |
| + update_label_.SetText(update_label_text); |
| show_success_indicator = true; |
| break; |
| } |