diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-09-09 17:18:49 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-09-09 17:18:49 +0300 |
commit | 1da80a3312ae865ed5d84271fc0cf53b82d87f15 (patch) | |
tree | fca0e8225d75d9999d9c05a04f43cf169bbba0b0 /src/resources/notifications.h | |
parent | ddc0d60dc8ef13414b0425e6050e804f9d8ba51c (diff) | |
download | plus-1da80a3312ae865ed5d84271fc0cf53b82d87f15.tar.gz plus-1da80a3312ae865ed5d84271fc0cf53b82d87f15.tar.bz2 plus-1da80a3312ae865ed5d84271fc0cf53b82d87f15.tar.xz plus-1da80a3312ae865ed5d84271fc0cf53b82d87f15.zip |
Show reason for item removing.
Diffstat (limited to 'src/resources/notifications.h')
-rw-r--r-- | src/resources/notifications.h | 37 |
1 files changed, 36 insertions, 1 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 425605174..0be514081 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -657,7 +657,6 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Item %s bound to you."), NotifyFlags::STRING}, - {"skill end all negative status", // TRANSLATORS: notification message N_("End all negative status."), @@ -742,6 +741,42 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Pet catch started."), NotifyFlags::EMPTY}, + {"delete item normal", + // TRANSLATORS: notification message + N_("Deleted item %s."), + NotifyFlags::STRING}, + {"delete item skill use", + // TRANSLATORS: notification message + N_("Deleted item %s by skill usage."), + NotifyFlags::STRING}, + {"delete item fail refine", + // TRANSLATORS: notification message + N_("Deleted item %s because refine failed."), + NotifyFlags::STRING}, + {"delete item material change", + // TRANSLATORS: notification message + N_("Deleted item %s because changing material."), + NotifyFlags::STRING}, + {"delete item to storage", + // TRANSLATORS: notification message + N_("Item %s moved to storage."), + NotifyFlags::STRING}, + {"delete item to cart", + // TRANSLATORS: notification message + N_("Item %s moved to cart."), + NotifyFlags::STRING}, + {"delete item sold", + // TRANSLATORS: notification message + N_("Item %s sold."), + NotifyFlags::STRING}, + {"delete item analysis", + // TRANSLATORS: notification message + N_("Item %s deleted because analysis."), + NotifyFlags::STRING}, + {"delete item unknown", + // TRANSLATORS: notification message + N_("Item %s deleted."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H |