1
0
mirror of https://github.com/bitwarden/web synced 2025-12-06 00:03:28 +00:00

[Reset Password] Event updates (#993)

* [Reset Password] Event updates

* Update jslib 395ded0 -> 6fbe330
This commit is contained in:
Vincent Salucci
2021-05-27 11:42:05 -05:00
committed by GitHub
parent b3f5c72ba9
commit 6586af71f8
3 changed files with 15 additions and 2 deletions

2
jslib

Submodule jslib updated: 2c297e2f45...6fbe33043b

View File

@@ -198,6 +198,10 @@ export class EventService {
msg = this.i18nService.t('eventWithdrawPasswordReset', this.formatOrgUserId(ev));
humanReadableMsg = this.i18nService.t('eventWithdrawPasswordReset', this.getShortId(ev.organizationUserId));
break;
case EventType.OrganizationUser_AdminResetPassword:
msg = this.i18nService.t('eventAdminPasswordReset', this.formatOrgUserId(ev));
humanReadableMsg = this.i18nService.t('eventAdminPasswordReset', this.getShortId(ev.organizationUserId));
break;
// Org
case EventType.Organization_Updated:
msg = humanReadableMsg = this.i18nService.t('editedOrgSettings');

View File

@@ -3882,6 +3882,15 @@
}
}
},
"eventAdminPasswordReset": {
"message": "Master password reset for user $ID$.",
"placeholders": {
"id": {
"content": "$1",
"example": "John Smith"
}
}
},
"trashCleanupWarning": {
"message": "Items that have been in Trash more than 30 days will be automatically deleted."
},