diff --git a/apps/browser/src/_locales/en/messages.json b/apps/browser/src/_locales/en/messages.json index 7281036de6..c90780e03a 100644 --- a/apps/browser/src/_locales/en/messages.json +++ b/apps/browser/src/_locales/en/messages.json @@ -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" diff --git a/apps/browser/src/vault/popup/components/vault/current-tab.component.ts b/apps/browser/src/vault/popup/components/vault/current-tab.component.ts index a420a28f61..125e2f97fa 100644 --- a/apps/browser/src/vault/popup/components/vault/current-tab.component.ts +++ b/apps/browser/src/vault/popup/components/vault/current-tab.component.ts @@ -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"); } } }