From a89337fd1b9debac0399f021f1368d7d9149ecf3 Mon Sep 17 00:00:00 2001 From: Brendan Early Date: Mon, 29 Jul 2024 22:11:17 -0700 Subject: [PATCH] change incorrect password message --- _locales/en/messages.json | 3 +++ src/components/Popup/SetPasswordPage.vue | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/_locales/en/messages.json b/_locales/en/messages.json index 5fb85b08..4643d08d 100644 --- a/_locales/en/messages.json +++ b/_locales/en/messages.json @@ -145,6 +145,9 @@ "message": "Password does not match.", "description": "Passphrase Not Match." }, + "phrase_wrong": { + "message": "Password incorrect" + }, "encrypted": { "message": "Encrypted", "description": "Encrypted." diff --git a/src/components/Popup/SetPasswordPage.vue b/src/components/Popup/SetPasswordPage.vue index de3d47ed..be00b882 100644 --- a/src/components/Popup/SetPasswordPage.vue +++ b/src/components/Popup/SetPasswordPage.vue @@ -111,7 +111,7 @@ export default Vue.extend({ this.currentPhrase ); if (!isCorrectPassword) { - this.$store.commit("notification/alert", this.i18n.phrase_not_match); + this.$store.commit("notification/alert", this.i18n.phrase_wrong); this.$store.commit("currentView/changeView", "SetPasswordPage"); return; }