diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-01-31 18:14:44 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-01-31 18:14:44 +0300 |
commit | cdd2dd27b61e36a376dc32947fd9e29f0a492d9b (patch) | |
tree | 88ec4ac6acbc090600c52bddddd978a15e0d0312 /src/resources/notifications.h | |
parent | c0255f61476a509780d316801a6a3d54c2f362ec (diff) | |
download | plus-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.gz plus-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.bz2 plus-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.tar.xz plus-cdd2dd27b61e36a376dc32947fd9e29f0a492d9b.zip |
Allow buy multiply items at once from cash shops.
Diffstat (limited to 'src/resources/notifications.h')
-rw-r--r-- | src/resources/notifications.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index fab76d35e..8fabc0217 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -837,6 +837,18 @@ namespace NotifyManager {"vending sold item", ("%s"), NotifyFlags::STRING}, + {"buy fail npc not found", + // TRANSLATORS: notification message + N_("Unable to buy. Npc not found."), + NotifyFlags::EMPTY}, + {"buy fail system error", + // TRANSLATORS: notification message + N_("Unable to buy. Shop system error."), + NotifyFlags::EMPTY}, + {"buy fail wrong item", + // TRANSLATORS: notification message + N_("Unable to buy. Wrong items selected."), + NotifyFlags::EMPTY}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H |