diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/notifications.h | 8 | ||||
-rw-r--r-- | src/resources/notifytypes.h | 2 |
2 files changed, 10 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 132409fd0..8249fef28 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -523,6 +523,14 @@ namespace NotifyManager // TRANSLATORS: notification message N_("%s joined room."), NotifyFlags::STRING}, + {"chat room leave", + // TRANSLATORS: notification message + N_("%s left room."), + NotifyFlags::STRING}, + {"chat room kick", + // TRANSLATORS: notification message + N_("%s kicked from room."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index 972e694a9..d8d10b8a3 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -149,6 +149,8 @@ namespace NotifyTypes ROOM_LIMIT_EXCEEDED, ROOM_ALREADY_EXISTS, ROOM_JOINED, + ROOM_LEAVE, + ROOM_KICKED, TYPE_END }; |