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": {
|
"howToAutofill": {
|
||||||
"message": "How to auto-fill"
|
"message": "How to auto-fill"
|
||||||
},
|
},
|
||||||
"autofillSelectInfo": {
|
"autofillSelectInfoWithCommand": {
|
||||||
"message": "Select an item from this page or use the shortcut: $COMMAND$. You can also try auto-fill on page load.",
|
"message": "Select an item from this page or use the shortcut: $COMMAND$",
|
||||||
"placeholders": {
|
"placeholders": {
|
||||||
"command": {
|
"command": {
|
||||||
"content": "$1",
|
"content": "$1",
|
||||||
@ -2135,8 +2135,8 @@
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
},
|
},
|
||||||
"autofillSelectInfoNoCommand": {
|
"autofillSelectInfoWithoutCommand": {
|
||||||
"message": "Select an item from this page or set a shortcut in settings. You can also try auto-fill on page load."
|
"message": "Select an item from this page or set a shortcut in settings."
|
||||||
},
|
},
|
||||||
"gotIt": {
|
"gotIt": {
|
||||||
"message": "Got it"
|
"message": "Got it"
|
||||||
|
@ -305,9 +305,9 @@ export class CurrentTabComponent implements OnInit, OnDestroy {
|
|||||||
|
|
||||||
private setAutofillCalloutText(command: string) {
|
private setAutofillCalloutText(command: string) {
|
||||||
if (command) {
|
if (command) {
|
||||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfo", command);
|
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoWithCommand", command);
|
||||||
} else {
|
} else {
|
||||||
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoNoCommand");
|
this.autofillCalloutText = this.i18nService.t("autofillSelectInfoWithoutCommand");
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user