1
0
mirror of https://github.com/laurent22/joplin.git synced 2025-01-23 18:53:36 +02:00

change tense when passwords do not match

This commit is contained in:
Helmut K. C. Tessarek 2019-10-02 19:32:32 -04:00
parent 5ed5d16716
commit 74c2bbc2f0
No known key found for this signature in database
GPG Key ID: BE0985349D44DD00

View File

@ -56,7 +56,7 @@ class Command extends BaseCommand {
return;
}
if (password !== password2) {
this.stdout(_('Passwords did not match!'));
this.stdout(_('Passwords do not match!'));
return;
}
await EncryptionService.instance().generateMasterKeyAndEnableEncryption(password);