1
0
mirror of https://github.com/bitwarden/browser synced 2025-12-19 17:53:39 +00:00

larn more links

This commit is contained in:
Kyle Spearrin
2018-07-19 13:56:44 -04:00
parent 236bcdfb68
commit bb68303b03
4 changed files with 30 additions and 9 deletions

View File

@@ -6,7 +6,12 @@
<div class="row">
<div class="col-6">
<div class="form-group">
<label for="locale">{{'language' | i18n}}</label>
<div class="d-flex">
<label for="locale">{{'language' | i18n}}</label>
<a class="ml-auto" href="https://help.bitwarden.com/article/localization/" target="_blank" rel="noopener" title="{{'learnMore' | i18n}}">
<i class="fa fa-question-circle-o"></i>
</a>
</div>
<select id="locale" name="Locale" [(ngModel)]="locale" class="form-control">
<option *ngFor="let o of localeOptions" [ngValue]="o.value">{{o.name}}</option>
</select>
@@ -20,6 +25,9 @@
<label class="form-check-label" for="disableIcons">
{{'disableIcons' | i18n}}
</label>
<a href="https://help.bitwarden.com/article/website-icons/" target="_blank" rel="noopener" title="{{'learnMore' | i18n}}">
<i class="fa fa-question-circle-o"></i>
</a>
</div>
<small class="form-text text-muted">{{'disableIconsDesc' | i18n}}</small>
</div>