diff options
author | huangs@chromium.org <huangs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-30 21:39:37 +0000 |
---|---|---|
committer | huangs@chromium.org <huangs@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2013-01-30 21:39:37 +0000 |
commit | 6daf7510a1776c85e2add58436c6f6f91d2f3500 (patch) | |
tree | a94abf80e26a8b19f4920131e45e8ebd690bb5a8 /chrome/installer/util/prebuild/create_string_rc.py | |
parent | f010765c4093b47650fdf4033468a181f217eb49 (diff) | |
download | chromium_src-6daf7510a1776c85e2add58436c6f6f91d2f3500.zip chromium_src-6daf7510a1776c85e2add58436c6f6f91d2f3500.tar.gz chromium_src-6daf7510a1776c85e2add58436c6f6f91d2f3500.tar.bz2 |
Rename "App Host" to "App Launcher" in user-visible UI
Changes include:
- User-visible strings, e.g., application name, shortcut name, tootips.
- The associated IDS_ message names.
- Log messages.
- Uninstall entry in the registry => Need transient code to delete old uninstall entry.
Changes exclude:
- Executable app_host.exe (correct, since it is a helper program, not the launcher itself).
- App command "quick-enable-application-host".
- Source filenames.
- Comments (separate cleanup -- now we consider "app host" and "app launcher" equivalent, to be cleaned up elsewhere).
- Dead code (--app-host switch and associated code; these should be cleaned up elsewhere).
Caveat: Existing shortcuts that states "App Host" will NOT be forced to say "App Launcher" => This CL is mostly for new installs.
BUG=166980
Review URL: https://chromiumcodereview.appspot.com/12040012
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@179704 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer/util/prebuild/create_string_rc.py')
-rwxr-xr-x | chrome/installer/util/prebuild/create_string_rc.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/prebuild/create_string_rc.py b/chrome/installer/util/prebuild/create_string_rc.py index d86b945..12e68ce 100755 --- a/chrome/installer/util/prebuild/create_string_rc.py +++ b/chrome/installer/util/prebuild/create_string_rc.py @@ -44,14 +44,14 @@ import FP kStringIds = [ 'IDS_PRODUCT_NAME', 'IDS_SXS_SHORTCUT_NAME', - 'IDS_PRODUCT_APP_HOST_NAME', + 'IDS_PRODUCT_APP_LAUNCHER_NAME', 'IDS_PRODUCT_BINARIES_NAME', 'IDS_PRODUCT_DESCRIPTION', 'IDS_PRODUCT_FRAME_NAME', 'IDS_UNINSTALL_CHROME', 'IDS_ABOUT_VERSION_COMPANY_NAME', 'IDS_INSTALL_HIGHER_VERSION', - 'IDS_INSTALL_HIGHER_VERSION_APP_HOST', + 'IDS_INSTALL_HIGHER_VERSION_APP_LAUNCHER', 'IDS_INSTALL_HIGHER_VERSION_CF', 'IDS_INSTALL_HIGHER_VERSION_CB_CF', 'IDS_INSTALL_SYSTEM_LEVEL_EXISTS', |