Index: chrome/installer/util/google_chrome_distribution.cc |
=================================================================== |
--- chrome/installer/util/google_chrome_distribution.cc (revision 12500) |
+++ chrome/installer/util/google_chrome_distribution.cc (working copy) |
@@ -165,8 +165,9 @@ |
} |
std::wstring GoogleChromeDistribution::GetAlternateApplicationName() { |
- // TODO(cpu): return the right localized strings when it arrives. |
- return L""; |
+ const std::wstring& alt_product_name = |
+ installer_util::GetLocalizedString(IDS_OEM_MAIN_SHORTCUT_NAME_BASE); |
Glenn Wilson
2009/03/26 00:53:55
I'm assuming that IDS_OEM_MAIN_SHORTCUT_NAME_BASE
|
+ return alt_product_name; |
} |
std::wstring GoogleChromeDistribution::GetInstallSubDir() { |
@@ -206,8 +207,9 @@ |
} |
std::wstring GoogleChromeDistribution::GetAppDescription() { |
- // TODO(cpu): Wire the actual localized strings when they arrive. |
- return L""; |
+ const std::wstring& app_description = |
+ installer_util::GetLocalizedString(IDS_SHORTCUT_TOOLTIP_BASE); |
+ return app_description; |
} |
int GoogleChromeDistribution::GetInstallReturnCode( |