diff options
author | Andrei Karas <akaras@inbox.ru> | 2015-08-22 23:05:32 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2015-08-22 23:05:32 +0300 |
commit | 31aad897b3bd0951bb9c0eb34bd8636fdfdfa87c (patch) | |
tree | eff25e4c406675e19a6c40c727c828f040a8eeed /src/resources/notifications.h | |
parent | 7f716b84fcad512a49e3122bc1bc49f3c5437cc8 (diff) | |
download | plus-31aad897b3bd0951bb9c0eb34bd8636fdfdfa87c.tar.gz plus-31aad897b3bd0951bb9c0eb34bd8636fdfdfa87c.tar.bz2 plus-31aad897b3bd0951bb9c0eb34bd8636fdfdfa87c.tar.xz plus-31aad897b3bd0951bb9c0eb34bd8636fdfdfa87c.zip |
Impliment packet SMSG_IGNORE_NICK_ACK.
Diffstat (limited to 'src/resources/notifications.h')
-rw-r--r-- | src/resources/notifications.h | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/src/resources/notifications.h b/src/resources/notifications.h index 44044afcf..946889596 100644 --- a/src/resources/notifications.h +++ b/src/resources/notifications.h @@ -702,6 +702,38 @@ namespace NotifyManager // TRANSLATORS: notification message N_("Unknown skill message."), NotifyFlags::EMPTY}, + {"ignore player success", + // TRANSLATORS: notification message + N_("Player succesfully ignored."), + NotifyFlags::EMPTY}, + {"ignore player failure", + // TRANSLATORS: notification message + N_("Player ignore failed."), + NotifyFlags::EMPTY}, + {"ignore player too many", + // TRANSLATORS: notification message + N_("Player ignore failed. Because too many ignores."), + NotifyFlags::EMPTY}, + {"ignore player unknown", + // TRANSLATORS: notification message + N_("Unknown player ignore failure."), + NotifyFlags::EMPTY}, + {"unignore player success", + // TRANSLATORS: notification message + N_("Player succesfully unignored."), + NotifyFlags::EMPTY}, + {"unignore player failure", + // TRANSLATORS: notification message + N_("Player unignore failed."), + NotifyFlags::EMPTY}, + {"unignore player unknown", + // TRANSLATORS: notification message + N_("Unknown player unignore failure."), + NotifyFlags::EMPTY}, + {"ignore unknown type", + // TRANSLATORS: notification message + N_("Unknown ignore type."), + NotifyFlags::EMPTY}, }; } // namespace NotifyManager #endif // RESOURCES_NOTIFICATIONS_H |