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

Unified Diff: app/l10n_util_win.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 | « app/l10n_util_unittest.cc ('k') | app/resources/app_locale_settings.grd » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: app/l10n_util_win.cc
===================================================================
--- app/l10n_util_win.cc (revision 42499)
+++ app/l10n_util_win.cc (working copy)
@@ -63,10 +63,9 @@
}
bool IsLocaleSupportedByOS(const std::string& locale) {
- // Block Oriya and Amharic on Windows XP.
+ // Block Amharic on Windows XP.
return win_util::GetWinVersion() >= win_util::WINVERSION_VISTA ||
- (!LowerCaseEqualsASCII(locale, "or") &&
- !LowerCaseEqualsASCII(locale, "am"));
+ !LowerCaseEqualsASCII(locale, "am");
}
bool NeedOverrideDefaultUIFont(std::wstring* override_font_family,
« no previous file with comments | « app/l10n_util_unittest.cc ('k') | app/resources/app_locale_settings.grd » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698