Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(2158)

Unified Diff: app/l10n_util_unittest.cc

Issue 1144001: Remove Oriya from the list of UI languages for now because we're not getting ... (Closed) Base URL: svn://chrome-svn/chrome/trunk/src/
Patch Set: '' Created 10 years, 9 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « no previous file | app/l10n_util_win.cc » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/l10n_util_unittest.cc
===================================================================
--- app/l10n_util_unittest.cc (revision 42499)
+++ app/l10n_util_unittest.cc (working copy)
@@ -120,7 +120,7 @@
"he",
"fil",
"nb",
- "or",
+ "am",
};
#if defined(OS_WIN)
@@ -234,17 +234,17 @@
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)
« no previous file with comments | « no previous file | app/l10n_util_win.cc » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698