mirror of
https://github.com/bitwarden/browser
synced 2025-12-21 18:53:29 +00:00
Add language selection in settings (#75)
* Add language selection in settings * Removed comment * Mapping Locale-Language saved as key-value instead of list of objects * Remove comment * Revert supported locales array
This commit is contained in:
committed by
Kyle Spearrin
parent
4d015568f5
commit
6bf0821ca6
@@ -42,6 +42,14 @@
|
||||
</div>
|
||||
<small class="help-block">{{'disableFaviconDesc' | i18n}}</small>
|
||||
</div>
|
||||
<div class="form-group">
|
||||
<label for="locale">{{'language' | i18n}}</label>
|
||||
<select id="locale" name="Locale" [(ngModel)]="locale"
|
||||
(change)="saveLocale()">
|
||||
<option *ngFor="let o of locales" [ngValue]="o.locale">{{o.language}}</option>
|
||||
</select>
|
||||
<small class="help-block">{{'languageDesc' | i18n}}</small>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
</div>
|
||||
|
||||
Reference in New Issue
Block a user