diff options
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/notifications.h | 12 | ||||
-rw-r--r-- | src/resources/notifytypes.h | 3 |
2 files changed, 15 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 78b19b7e9..019879aba 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -499,6 +499,18 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Pet feeding error."), NotifyFlags::EMPTY}, + {"manner changed", + // TRANSLATORS: notification message + N_("A manner point has been successfully aligned."), + NotifyFlags::EMPTY}, + {"manner positive points", + // TRANSLATORS: notification message + N_("You got positive manner points from %s."), + NotifyFlags::STRING}, + {"manner negative points", + // TRANSLATORS: notification message + N_("You got negative manner points from %s."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index 017e61a9d..27bad8673 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -143,6 +143,9 @@ namespace NotifyTypes SEARCH_STORE_FAILED_NO_INFORMATION, PET_FEED_OK, PET_FEED_ERROR, + MANNER_CHANGED, + MANNER_POSITIVE_POINTS, + MANNER_NEGATIVE_POINTS, TYPE_END }; |