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 818f94512..60e2cefad 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -436,6 +436,18 @@ namespace NotifyManager {"buying store create empty", // TRANSLATORS: notification message N_("Buying store create failed. No items in store."), + NotifyFlags::EMPTY}, + {"buying store sell failed money limit", + // TRANSLATORS: notification message + N_("All items within the buy limit were purchased."), + NotifyFlags::EMPTY}, + {"buying store sell failed empty", + // TRANSLATORS: notification message + N_("All items were purchased."), + NotifyFlags::EMPTY}, + {"buying store sell failed", + // TRANSLATORS: notification message + N_("Buying item failed."), NotifyFlags::EMPTY} }; } // namespace NotifyManager diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h index a9c881887..f8c2f737c 100644 --- a/src/resources/notifytypes.h +++ b/src/resources/notifytypes.h @@ -128,6 +128,9 @@ namespace NotifyTypes BUYING_STORE_CREATE_FAILED, BUYING_STORE_CREATE_FAILED_WEIGHT, BUYING_STORE_CREATE_EMPTY, + BUYING_STORE_SELL_FAILED_MONEY_LIMIT, + BUYING_STORE_SELL_FAILED_EMPTY, + BUYING_STORE_SELL_FAILED, TYPE_END }; |