VIVO-523 Change the way the example language files are presented.

This commit is contained in:
j2blake 2013-11-14 17:05:04 -05:00
parent 41664dbce0
commit d3f6af6981
11 changed files with 2 additions and 1 deletions

View file

@ -134,7 +134,8 @@ public class LocaleSelectionSetup implements ServletContextListener {
throws IllegalArgumentException { throws IllegalArgumentException {
Locale locale = LocaleUtils.toLocale(localeString); Locale locale = LocaleUtils.toLocale(localeString);
if (!LocaleUtils.isAvailableLocale(locale)) { if (!"es_GO".equals(localeString) && // No complaint about bogus locale
!LocaleUtils.isAvailableLocale(locale)) {
ssWarning("'" + locale + "' is not a recognized locale."); ssWarning("'" + locale + "' is not a recognized locale.");
} }
return locale; return locale;