diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-21 16:39:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-21 16:39:23 +0300 |
commit | 3652f41912042501d55e7663315608e0cb8b3bf8 (patch) | |
tree | bf6bf57ac70f107e64a0b0bc029c6ab5c7150ca7 /src/resources | |
parent | 2ff57a846a44a84729c5f0a737bb53b8b6926a8e (diff) | |
download | mv-3652f41912042501d55e7663315608e0cb8b3bf8.tar.gz mv-3652f41912042501d55e7663315608e0cb8b3bf8.tar.bz2 mv-3652f41912042501d55e7663315608e0cb8b3bf8.tar.xz mv-3652f41912042501d55e7663315608e0cb8b3bf8.zip |
Impliment packet SMSG_PLAYER_REFINE.
Diffstat (limited to 'src/resources')
-rw-r--r-- | src/resources/notifications.h | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 66b72623c..40c377b4e 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -625,6 +625,22 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Rental time for %s expired"), NotifyFlags::STRING}, + {"refine success", + // TRANSLATORS: notification message + N_("Refine success for item %s."), + NotifyFlags::STRING}, + {"refine failure", + // TRANSLATORS: notification message + N_("Refine failure for item %s."), + NotifyFlags::STRING}, + {"refine downgrade", + // TRANSLATORS: notification message + N_("Refine failure. Item %s downgraded."), + NotifyFlags::STRING}, + {"refine unknown", + // TRANSLATORS: notification message + N_("Refine unknown for item %s."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H |