summaryrefslogtreecommitdiff
path: root/src/resources
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2015-02-06 19:59:04 +0300
committerAndrei Karas <akaras@inbox.ru>2015-02-06 19:59:04 +0300
commit97a8156a1252806f8789fb6d4ae333b0e4cf88f6 (patch)
tree81c686cb02a23b038318c6c131ee0162344b4ae7 /src/resources
parente5a57674e9cd7502e13218d20d7067f2fb4d96f5 (diff)
downloadManaVerse-97a8156a1252806f8789fb6d4ae333b0e4cf88f6.tar.gz
ManaVerse-97a8156a1252806f8789fb6d4ae333b0e4cf88f6.tar.bz2
ManaVerse-97a8156a1252806f8789fb6d4ae333b0e4cf88f6.tar.xz
ManaVerse-97a8156a1252806f8789fb6d4ae333b0e4cf88f6.zip
eathena: add packet SMSG_BUYINGSTORE_SELL_FAILED 0x081a.
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 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
};