mirror of
https://github.com/bitwarden/browser.git
synced 2024-12-21 16:18:28 +01:00
[PM-1405] Remove auto-fill on page load verbiage (#5004)
* Remove auto-fill on page load verbiage * Remove period * Rename transaltion key
This commit is contained in:
parent
0d85bdc931
commit
499f0f93f9
@ -2126,8 +2126,8 @@
|
||||
"howToAutofill": {
|
||||
"message": "How to auto-fill"
|
||||
},
|
||||
"autofillSelectInfo": {
|
||||
"message": "Select an item from this page or use the shortcut: $COMMAND$. You can also try auto-fill on page load.",
|
||||
"autofillSelectInfoWithCommand": {
|
||||
"message": "Select an item from this page or use the shortcut: $COMMAND$",
|
||||
"placeholders": {
|
||||
"command": {
|
||||
"content": "$1",
|
||||
@ -2135,8 +2135,8 @@
|
||||
}
|
||||
}
|
||||
},
|
||||
"autofillSelectInfoNoCommand": {
|
||||
"message": "Select an item from this page or set a shortcut in settings. You can also try auto-fill on page load."
|
||||
"autofillSelectInfoWithoutCommand": {
|
||||
"message": "Select an item from this page or set a shortcut in settings."
|
||||
},
|
||||
"gotIt": {
|
||||
"message": "Got it"
|
||||
|
@ -305,9 +305,9 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
|
||||
|
||||
private setAutofillCalloutText(command: string) {
|
||||
if (command) {
|
||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfo", command);
|
||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoWithCommand", command);
|
||||
} else {
|
||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoNoCommand");
|
||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoWithoutCommand");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user