[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": {
"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"

View File

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