feat(web): fix translation keys

This commit is contained in:
Andreas Coroiu 2022-06-23 11:56:10 +02:00
parent 900c91ea4f
commit 046f797eea
No known key found for this signature in database
GPG Key ID: E70B5FFC81DFEC1A
2 changed files with 12 additions and 12 deletions

View File

@ -77,7 +77,7 @@
[(ngModel)]="enableFavicons" [(ngModel)]="enableFavicons"
/> />
<label class="form-check-label" for="enableFavicons"> <label class="form-check-label" for="enableFavicons">
{{ "enableFavicon" | i18n }} {{ "showWebsiteIcons" | i18n }}
</label> </label>
<a <a
href="https://bitwarden.com/help/website-icons/" href="https://bitwarden.com/help/website-icons/"
@ -88,7 +88,7 @@
<i class="bwi bwi-question-circle" aria-hidden="true"></i> <i class="bwi bwi-question-circle" aria-hidden="true"></i>
</a> </a>
</div> </div>
<small class="form-text text-muted">{{ "faviconDesc" | i18n }}</small> <small class="form-text text-muted">{{ "showWebsiteIconsDesc" | i18n }}</small>
</div> </div>
<div class="form-group"> <div class="form-group">
<div class="form-check"> <div class="form-check">
@ -100,7 +100,7 @@
[(ngModel)]="enableGravatars" [(ngModel)]="enableGravatars"
/> />
<label class="form-check-label" for="enableGravatars"> <label class="form-check-label" for="enableGravatars">
{{ "enableGravatars" | i18n }} {{ "showGravatars" | i18n }}
</label> </label>
<a <a
href="https://gravatar.com/" href="https://gravatar.com/"
@ -111,7 +111,7 @@
<i class="bwi bwi-question-circle" aria-hidden="true"></i> <i class="bwi bwi-question-circle" aria-hidden="true"></i>
</a> </a>
</div> </div>
<small class="form-text text-muted">{{ "enableGravatarsDesc" | i18n }}</small> <small class="form-text text-muted">{{ "showGravatarsDesc" | i18n }}</small>
</div> </div>
<div class="form-group"> <div class="form-group">
<div class="form-check"> <div class="form-check">
@ -123,10 +123,10 @@
[(ngModel)]="enableFullWidth" [(ngModel)]="enableFullWidth"
/> />
<label class="form-check-label" for="enableFullWidth"> <label class="form-check-label" for="enableFullWidth">
{{ "enableFullWidth" | i18n }} {{ "displayFullWidthLayout" | i18n }}
</label> </label>
</div> </div>
<small class="form-text text-muted">{{ "enableFullWidthDesc" | i18n }}</small> <small class="form-text text-muted">{{ "displayFullWidthLayoutDesc" | i18n }}</small>
</div> </div>
<div class="row"> <div class="row">
<div class="col-6"> <div class="col-6">

View File

@ -1151,24 +1151,24 @@
"languageDesc": { "languageDesc": {
"message": "Change the language used by the web vault." "message": "Change the language used by the web vault."
}, },
"enableFavicon": { "showWebsiteIcons": {
"message": "Show website icons" "message": "Show website icons"
}, },
"faviconDesc": { "showWebsiteIconsDesc": {
"message": "Show a recognizable image next to each login." "message": "Show a recognizable image next to each login."
}, },
"enableGravatars": { "showGravatars": {
"message": "Show Gravatars", "message": "Show Gravatars",
"description": "Use avatar images loaded from gravatar.com." "description": "Use avatar images loaded from gravatar.com."
}, },
"enableGravatarsDesc": { "showGravatarsDesc": {
"message": "Use avatar images loaded from gravatar.com." "message": "Use avatar images loaded from gravatar.com."
}, },
"enableFullWidth": { "displayFullWidthLayout": {
"message": "Display full width layout", "message": "Display full width layout",
"description": "Allows scaling the web vault UI's width" "description": "Allows scaling the web vault UI's width"
}, },
"enableFullWidthDesc": { "displayFullWidthLayoutDesc": {
"message": "Allow the web vault to expand the full width of the browser window." "message": "Allow the web vault to expand the full width of the browser window."
}, },
"default": { "default": {