change tense when passwords do not match

pull/1947/head^2
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
1 changed files with 1 additions and 1 deletions

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);