summaryrefslogtreecommitdiffstats
path: root/chrome/installer
diff options
context:
space:
mode:
authorrahulk@google.com <rahulk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-27 23:40:22 +0000
committerrahulk@google.com <rahulk@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2008-08-27 23:40:22 +0000
commitb08de9cd2ea9c8412134843fb4520cbed9a21d71 (patch)
treebccf078792e1c05a7d3c62fcadddfde2ca19781e /chrome/installer
parentef91a9b983a30a05668ef5ba3c4f26605ae6b467 (diff)
downloadchromium_src-b08de9cd2ea9c8412134843fb4520cbed9a21d71.zip
chromium_src-b08de9cd2ea9c8412134843fb4520cbed9a21d71.tar.gz
chromium_src-b08de9cd2ea9c8412134843fb4520cbed9a21d71.tar.bz2
Remove Google Chrome specific strings from common resources file and use them from new resources file that is specific to only Google Chrome.
BUG=1110882 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@1473 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r--chrome/installer/util/prebuild/create_string_rc.py4
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 7574b16..5c29d4e 100644
--- a/chrome/installer/util/prebuild/create_string_rc.py
+++ b/chrome/installer/util/prebuild/create_string_rc.py
@@ -61,11 +61,11 @@ def CollectTranslatedStrings():
Returns a list of tuples of (string_id, language, translated string). The
list is sorted by language codes."""
kGeneratedResourcesPath = os.path.join(path_utils.ScriptDir(), '..', '..',
- '..', 'app/generated_resources.grd')
+ '..', 'app/google_chrome_strings.grd')
kTranslationDirectory = os.path.join(path_utils.ScriptDir(), '..', '..',
'..', 'app', 'resources')
kTranslationFiles = glob.glob(os.path.join(kTranslationDirectory,
- 'generated_resources*.xtb'))
+ 'google_chrome_strings*.xtb'))
# Get the strings out of generated_resources.grd.
dom = minidom.parse(kGeneratedResourcesPath)