diff options
author | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-26 21:29:32 +0000 |
---|---|---|
committer | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-26 21:29:32 +0000 |
commit | af3719864762ddf3e061ba24129d054e3a722930 (patch) | |
tree | c42340bc87d3c27394cd2fc738752b50bfd4346c /chrome/installer | |
parent | 054dc1e0e2f8e87500964bcab881174b9393d847 (diff) | |
download | chromium_src-af3719864762ddf3e061ba24129d054e3a722930.zip chromium_src-af3719864762ddf3e061ba24129d054e3a722930.tar.gz chromium_src-af3719864762ddf3e061ba24129d054e3a722930.tar.bz2 |
Follow-up to Tony's change to replace he.xtb with iw.xtb
(see http://codereview.chromium.org/1332001 )
This is to fix a brekage in Chrome Official buildbot.
BUG=NONE
TEST=ChromeOfficial Build bot goes through.
TBR=tony
Review URL: http://codereview.chromium.org/1431005
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42821 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'chrome/installer')
-rw-r--r-- | chrome/installer/util/l10n_string_util.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/chrome/installer/util/l10n_string_util.cc b/chrome/installer/util/l10n_string_util.cc index c90b656..6be1c61 100644 --- a/chrome/installer/util/l10n_string_util.cc +++ b/chrome/installer/util/l10n_string_util.cc @@ -97,14 +97,14 @@ int GetLanguageOffset(const std::wstring& language) { offset_map[L"fil"] = IDS_L10N_OFFSET_FIL; offset_map[L"fr"] = IDS_L10N_OFFSET_FR; offset_map[L"gu"] = IDS_L10N_OFFSET_GU; - offset_map[L"he"] = IDS_L10N_OFFSET_HE; + offset_map[L"he"] = IDS_L10N_OFFSET_IW; offset_map[L"hi"] = IDS_L10N_OFFSET_HI; offset_map[L"hr"] = IDS_L10N_OFFSET_HR; offset_map[L"hu"] = IDS_L10N_OFFSET_HU; offset_map[L"id"] = IDS_L10N_OFFSET_ID; offset_map[L"it"] = IDS_L10N_OFFSET_IT; // Google web properties use iw for he. Handle both just to be safe. - offset_map[L"iw"] = IDS_L10N_OFFSET_HE; + offset_map[L"iw"] = IDS_L10N_OFFSET_IW; offset_map[L"ja"] = IDS_L10N_OFFSET_JA; offset_map[L"kn"] = IDS_L10N_OFFSET_KN; offset_map[L"ko"] = IDS_L10N_OFFSET_KO; |