1
0
mirror of https://github.com/bitwarden/web synced 2025-12-16 00:03:25 +00:00
This commit is contained in:
Kyle Spearrin
2018-06-25 16:44:06 -04:00
parent fd8128dfe9
commit bb14aa821b
7 changed files with 103 additions and 5 deletions

View File

@@ -0,0 +1,23 @@
<div class="page-header">
<h1>{{'options' | i18n}}</h1>
</div>
<div class="row">
<div class="col-6">
<div class="form-group">
<label for="locale">{{'language' | i18n}}</label>
<select id="locale" name="Locale" [(ngModel)]="locale" (change)="saveLocale()" class="form-control">
<option *ngFor="let o of localeOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
<small class="form-text text-muted">{{'languageDesc' | i18n}}</small>
</div>
</div>
</div>
<div class="form-group">
<div class="form-check">
<input class="form-check-input" type="checkbox" id="disableIcons" name="DisableIcons" [(ngModel)]="disableIcons" (change)="saveIcons()">
<label class="form-check-label" for="disableIcons">
{{'disableIcons' | i18n}}
</label>
</div>
<small class="form-text text-muted">{{'disableIconsDesc' | i18n}}</small>
</div>