Skip to content

Commit

Permalink
change incorrect password message
Browse files Browse the repository at this point in the history
  • Loading branch information
mymindstorm authored Jul 30, 2024
1 parent 5dc3615 commit a89337f
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions _locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,9 @@
"message": "Password does not match.",
"description": "Passphrase Not Match."
},
"phrase_wrong": {
"message": "Password incorrect"
},
"encrypted": {
"message": "Encrypted",
"description": "Encrypted."
Expand Down
2 changes: 1 addition & 1 deletion src/components/Popup/SetPasswordPage.vue
Original file line number Diff line number Diff line change
Expand Up @@ -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;
}
Expand Down

0 comments on commit a89337f

Please sign in to comment.