2023-10-15 20:37:03 +02:00
|
|
|
{{! template-lint-disable require-input-label }}
|
|
|
|
<select class='language-select' {{on 'change' this.handleChange}}>
|
2023-10-15 19:11:08 +02:00
|
|
|
{{#each-in this.locales as |localeKey localeName|}}
|
|
|
|
<option value={{localeKey}} selected={{eq localeKey this.currentLocale}}>
|
|
|
|
{{localeName}}
|
|
|
|
</option>
|
|
|
|
{{/each-in}}
|
|
|
|
</select>
|