1
0
mirror of https://github.com/bitwarden/browser.git synced 2024-09-01 00:10:39 +02:00

fix event i18n ids

This commit is contained in:
Kyle Spearrin 2018-07-10 08:47:34 -04:00
parent 137bb3a4c2
commit ddd832d016

View File

@ -106,10 +106,10 @@ export class EventService {
break;
// Org user
case EventType.OrganizationUser_Invited:
msg = this.i18nService.t('invitedUser', this.formatOrgUserId(ev));
msg = this.i18nService.t('invitedUserId', this.formatOrgUserId(ev));
break;
case EventType.OrganizationUser_Confirmed:
msg = this.i18nService.t('confirmedUser', this.formatOrgUserId(ev));
msg = this.i18nService.t('confirmedUserId', this.formatOrgUserId(ev));
break;
case EventType.OrganizationUser_Updated:
msg = this.i18nService.t('editedUserId', this.formatOrgUserId(ev));