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 9ca406712..0718f7ac5 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -567,6 +567,14 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Left %d seconds until you can use item."), NotifyFlags::INT}, + {"mail send ok", + // TRANSLATORS: notification message + N_("Message succesfully sent."), + NotifyFlags::EMPTY}, + {"mail send error", + // TRANSLATORS: notification message + N_("Message send failed."), + NotifyFlags::EMPTY}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index d698734e2..8076d327c 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -160,6 +160,8 @@ namespace NotifyTypes ROOM_ERROR_HIGH_LEVEL, ROOM_ERROR_RACE, USE_ITEM_WAIT, + MAIL_SEND_OK, + MAIL_SEND_ERROR, TYPE_END }; |