diff options
author | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 19:38:23 +0000 |
---|---|---|
committer | jshin@chromium.org <jshin@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98> | 2010-03-25 19:38:23 +0000 |
commit | cf1ab6fe1a479279bdf8757f309f7b3d49f1a4df (patch) | |
tree | 7834cf4ed76579d7d1dc9ceb239991474e387d16 /app/l10n_util_unittest.cc | |
parent | 4fb7d29554b767c3446f21166a1432bd5b03ac9f (diff) | |
download | chromium_src-cf1ab6fe1a479279bdf8757f309f7b3d49f1a4df.zip chromium_src-cf1ab6fe1a479279bdf8757f309f7b3d49f1a4df.tar.gz chromium_src-cf1ab6fe1a479279bdf8757f309f7b3d49f1a4df.tar.bz2 |
Remove Oriya from the list of UI languages for now because we're not getting Oriya translation updated any more.
BUG=37562
TEST=On Windows, 'chrome --lang=or' will bring up English Chrome.
Review URL: http://codereview.chromium.org/1144001
git-svn-id: svn://svn.chromium.org/chrome/trunk/src@42655 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'app/l10n_util_unittest.cc')
-rw-r--r-- | app/l10n_util_unittest.cc | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/app/l10n_util_unittest.cc b/app/l10n_util_unittest.cc index 94dd8fd..1975d6c 100644 --- a/app/l10n_util_unittest.cc +++ b/app/l10n_util_unittest.cc @@ -120,7 +120,7 @@ TEST_F(L10nUtilTest, GetAppLocale) { "he", "fil", "nb", - "or", + "am", }; #if defined(OS_WIN) @@ -234,17 +234,17 @@ TEST_F(L10nUtilTest, GetAppLocale) { SetICUDefaultLocale("he"); EXPECT_EQ("en-US", l10n_util::GetApplicationLocale(L"en")); - // Oriya should be blocked unless OS is Vista or newer. + // Amharic should be blocked unless OS is Vista or newer. if (win_util::GetWinVersion() < win_util::WINVERSION_VISTA) { - SetICUDefaultLocale("or"); + SetICUDefaultLocale("am"); EXPECT_EQ("en-US", l10n_util::GetApplicationLocale(L"")); SetICUDefaultLocale("en-GB"); - EXPECT_EQ("en-GB", l10n_util::GetApplicationLocale(L"or")); + EXPECT_EQ("en-GB", l10n_util::GetApplicationLocale(L"am")); } else { - SetICUDefaultLocale("or"); - EXPECT_EQ("or", l10n_util::GetApplicationLocale(L"")); + SetICUDefaultLocale("am"); + EXPECT_EQ("am", l10n_util::GetApplicationLocale(L"")); SetICUDefaultLocale("en-GB"); - EXPECT_EQ("or", l10n_util::GetApplicationLocale(L"or")); + EXPECT_EQ("am", l10n_util::GetApplicationLocale(L"am")); } #endif // defined(OS_WIN) |