|
@@ -63,11 +63,11 @@
|
|
|
<label class="col-xs-3 control-label tbd">(TBD) {{ t('app_setting.Default Language for new users') }}</label>
|
|
<label class="col-xs-3 control-label tbd">(TBD) {{ t('app_setting.Default Language for new users') }}</label>
|
|
|
<div class="col-xs-6">
|
|
<div class="col-xs-6">
|
|
|
<div class="radio radio-primary radio-inline">
|
|
<div class="radio radio-primary radio-inline">
|
|
|
- <input type="radio" id="radioLangEn" name="userForm[globalLang]" value="{{ consts.language.LANG_EN_US }}" {% if user.lang == consts.language.LANG_EN_US %}checked="checked"{% endif %}>
|
|
|
|
|
|
|
+ <input type="radio" id="radioLangEn" name="settingForm[app:globalLang]" value="{{ consts.language.LANG_EN }}" {% if appGlobalLang() == consts.language.LANG_EN %}checked="checked"{% endif %}>
|
|
|
<label for="radioLangEn">{{ t('English') }}</label>
|
|
<label for="radioLangEn">{{ t('English') }}</label>
|
|
|
</div>
|
|
</div>
|
|
|
<div class="radio radio-primary radio-inline">
|
|
<div class="radio radio-primary radio-inline">
|
|
|
- <input type="radio" id="radioLangJa" name="userForm[globalLang]" value="{{ consts.language.LANG_JA }}" {% if user.lang == consts.language.LANG_JA %}checked="checked"{% endif %}>
|
|
|
|
|
|
|
+ <input type="radio" id="radioLangJa" name="settingForm[app:globalLang]" value="{{ consts.language.LANG_JA }}" {% if appGlobalLang() == consts.language.LANG_JA %}checked="checked"{% endif %}>
|
|
|
<label for="radioLangJa">{{ t('Japanese') }}</label>
|
|
<label for="radioLangJa">{{ t('Japanese') }}</label>
|
|
|
</div>
|
|
</div>
|
|
|
</div>
|
|
</div>
|