summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
Diffstat (limited to 'src/resources')
-rw-r--r--src/resources/notifications.h12
-rw-r--r--src/resources/notifytypes.h3
2 files changed, 15 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h
index 2cfeca286..05ef0f50c 100644
--- a/src/resources/notifications.h
+++ b/src/resources/notifications.h
@@ -42,6 +42,18 @@ namespace NotifyManager
// TRANSLATORS: notification message
N_("Unable to buy."),
NotifyFlags::EMPTY},
+ {"buy fail no money",
+ // TRANSLATORS: notification message
+ N_("Unable to buy. You not have enought money."),
+ NotifyFlags::EMPTY},
+ {"buy fail overweight",
+ // TRANSLATORS: notification message
+ N_("Unable to buy. You overweight."),
+ NotifyFlags::EMPTY},
+ {"buy fail too many items",
+ // TRANSLATORS: notification message
+ N_("Unable to buy. You have too many items."),
+ NotifyFlags::EMPTY},
{"sell empty",
// TRANSLATORS: notification message
N_("Nothing to sell."),
diff --git a/src/resources/notifytypes.h b/src/resources/notifytypes.h
index be3af93b8..e3f528e43 100644
--- a/src/resources/notifytypes.h
+++ b/src/resources/notifytypes.h
@@ -30,6 +30,9 @@ namespace NotifyTypes
NONE = 0,
BUY_DONE,
BUY_FAILED,
+ BUY_FAILED_NO_MONEY,
+ BUY_FAILED_OVERWEIGHT,
+ BUY_FAILED_TOO_MANY_ITEMS,
SELL_LIST_EMPTY,
SOLD,
SELL_FAILED,