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 7c864325b..0aa9d1c08 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -583,6 +583,14 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Money attach failed."), NotifyFlags::EMPTY}, + {"mail return error", + // TRANSLATORS: notification message + N_("Message return failed."), + NotifyFlags::EMPTY}, + {"mail return ok", + // TRANSLATORS: notification message + N_("Message return success."), + NotifyFlags::EMPTY}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index cdd6a22d0..36792b6b9 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -164,6 +164,8 @@ namespace NotifyTypes MAIL_SEND_ERROR, MAIL_ATTACH_ITEM_ERROR, MAIL_ATTACH_MONEY_ERROR, + MAIL_RETURN_ERROR, + MAIL_RETURN_OK, TYPE_END }; |