So I need to pass the locale into 'include.translation()', but it gets
included before Model is initialized, which means I can't pass
'Myapp.getLocale()' into 'include.translation()' because it's not
initialized yet.
Can the translations file be included after the Model and Controller
have initialized?
<script type="text/javascript" src="/reportsTier/jsmvc/views/i18n/<
%= request.getParameter("locale") %>.js"></script>
This works as long as it's at the bottom of the page, after all the
JMVC stuff.