My AppModule configuration: public static void contributeApplicationDefaults(MappedConfiguration<String, String> configuration) { configuration.add(SymbolConstants.SUPPORTED_LOCALES, "nl"); }
In Tapestry 5.0.18 this meant injected Locales were always Dutch (nl) on all pages and components. I used that a lot to fetch the content for the right language from our database (only contains dutch content so far). In Tapestry 5.1.0.5 I get locale "en_US" on my machine which causes problems all through the application. Is this because "nl" is not in the list of officially supported locales? Is it possible to limit visitors to a locale that isn't officially supported yet in Tapestry 5.1.0.5? - Onno