1
0
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:
Robyn MacCallum 2023-03-15 09:41:00 -04:00 committed by GitHub
parent 0d85bdc931
commit 499f0f93f9
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 6 deletions

View File

@ -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"

View File

@ -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");
} }
} }
} }