Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions apps/web/src/app/dirt/event-logs/services/event.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -816,6 +816,12 @@ export class EventService {
case EventType.Send_Created_File_WithPasswordProtection:
msg = humanReadableMsg = this.i18nService.t("createdFileSendWithPasswordProtection");
break;
case EventType.Send_Updated_Text:
msg = humanReadableMsg = this.i18nService.t("editedTextSend");
break;
case EventType.Send_Updated_File:
msg = humanReadableMsg = this.i18nService.t("editedFileSend");
break;

default:
break;
Expand Down
8 changes: 8 additions & 0 deletions apps/web/src/locales/en/messages.json
Original file line number Diff line number Diff line change
Expand Up @@ -4360,6 +4360,14 @@
"message": "Created file Send with password",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedTextSend": {
"message": "Edited text Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"editedFileSend": {
"message": "Edited file Send",
"description": "'Send' is a noun and the name of a feature called 'Bitwarden Send'. It should not be translated."
},
"movedItemIdToOrg": {
"message": "Moved item $ID$ to an organization.",
"placeholders": {
Expand Down
2 changes: 2 additions & 0 deletions libs/common/src/dirt/event-logs/enums/event-type.enum.ts
Original file line number Diff line number Diff line change
Expand Up @@ -145,4 +145,6 @@ export enum EventType {
Send_Created_File = 2503,
Send_Created_File_WithEmailVerification = 2504,
Send_Created_File_WithPasswordProtection = 2505,
Send_Updated_Text = 2506,
Send_Updated_File = 2507,
}
Loading