diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-10-14 15:51:23 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-10-14 15:51:23 +0300 |
commit | a4ee70af007aca5a59a923454ed340cdb6d1e080 (patch) | |
tree | ece6e48e91962ca807d1671766dfcce80f8cc28b /src/resources/notifications.h | |
parent | 4ba35c456af28479b547f2ab2c0bd02c40c292f6 (diff) | |
download | plus-a4ee70af007aca5a59a923454ed340cdb6d1e080.tar.gz plus-a4ee70af007aca5a59a923454ed340cdb6d1e080.tar.bz2 plus-a4ee70af007aca5a59a923454ed340cdb6d1e080.tar.xz plus-a4ee70af007aca5a59a923454ed340cdb6d1e080.zip |
Add option for show why player disappeared. Can be usefull for GM's.
Located in settings / players / Log players actions (for GM)
Diffstat (limited to 'src/resources/notifications.h')
-rw-r--r-- | src/resources/notifications.h | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index ab37a5232..250f42813 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -771,6 +771,26 @@ namespace NotifyManager {"delete item dropped", "", NotifyFlags::STRING}, + {"being remove died", + // TRANSLATORS: notification message + N_("Player %s died."), + NotifyFlags::STRING}, + {"being remove logged out", + // TRANSLATORS: notification message + N_("Player %s logged out."), + NotifyFlags::STRING}, + {"being remove warped", + // TRANSLATORS: notification message + N_("Player %s warped."), + NotifyFlags::STRING}, + {"being remove trick dead", + // TRANSLATORS: notification message + N_("Player %s trick dead."), + NotifyFlags::STRING}, + {"being remove unknown", + // TRANSLATORS: notification message + N_("Player %s unknown remove."), + NotifyFlags::STRING}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H |