I assumed that the 'Locale' configuration setting was used for HTML and HTTP locale information. I changed that local configuration in config.php
$Configuration['Garden']['Locale'] = 'en-US';but it appears that 'en-CA' is still being used, for example in the HTML element
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-ca"> Is en-CA hardcoded?
0 • •
Comments
For instance, default view in
applications/dashboard/views/default.master.php
got
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-ca">hardcoded.The view can be redefined, but indeed, I think it would be better to use the locale variable.
- Spam
- Abuse
- Troll
1 • Off Topic Insightful Awesome LOL •Another interesting localization feature would be if there was a base language locale which provided a common base for the language, and than specific overrides for the region. That way there would be less work to localize. For example, en-US, en-CA, en-GB might share a common 'en' locale, but each can override differences.
- Spam
- Abuse
- Troll
0 • Off Topic Insightful Awesome LOL •