summaryrefslogtreecommitdiff
path: root/src/notifications.h
blob: 26d9ef745069687e71c607940bd7762d7ef12718 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
/*
 *  The ManaPlus Client
 *  Copyright (C) 2013  The ManaPlus Developers
 *
 *  This file is part of The ManaPlus Client.
 *
 *  This program is free software; you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation; either version 2 of the License, or
 *  any later version.
 *
 *  This program is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef NOTIFYCATIONS_H
#define NOTIFYCATIONS_H

#include "utils/gettext.h"

namespace NotifyManager
{
    enum NotifyTypes
    {
        BUY_DONE,
        BUY_FAILED,
        SELL_LIST_EMPTY,
        SOLD,
        SELL_FAILED,
        SELL_TRADE_FAILED,
        SELL_UNSELLABLE_FAILED,
        ONLINE_USERS,
        GUILD_CREATED,
        GUILD_ALREADY,
        GUILD_EMPERIUM_CHECK_FAILED,
        GUILD_ERROR,
        GUILD_LEFT,
        GUILD_INVITE_FAILED,
        GUILD_INVITE_REJECTED,
        GUILD_INVITE_JOINED,
        GUILD_INVITE_FULL,
        GUILD_INVITE_ERROR,
        GUILD_USER_LEFT,
        GUILD_KICKED,
        GUILD_USER_KICKED,
        USE_FAILED,
        EQUIP_FAILED,
        PARTY_CREATE_FAILED,
        PARTY_CREATED,
        PARTY_LEFT,
        PARTY_USER_JOINED,
        PARTY_INVITE_ALREADY_MEMBER,
        PARTY_INVITE_REFUSED,
        PARTY_INVITE_DONE,
        PARTY_INVITE_PARTY_FULL,
        PARTY_INVITE_ERROR,
        PARTY_EXP_SHARE_ON,
        PARTY_EXP_SHARE_OFF,
        PARTY_EXP_SHARE_ERROR,
        PARTY_ITEM_SHARE_ON,
        PARTY_ITEM_SHARE_OFF,
        PARTY_ITEM_SHARE_ERROR,
        PARTY_USER_LEFT,
        PARTY_UNKNOWN_USER_MSG,
        PARTY_USER_NOT_IN_PARTY,

        TYPE_END
    };

    enum NotifyFlags
    {
        EMPTY,
        INT,
        GUILD,
        GUILD_STRING,
        PARTY,
        PARTY_STRING
    };

    struct NotificationInfo
    {
        const char *text;
        const NotifyFlags flags;
    };

    static const NotificationInfo notifications[] =
    {
        {N_("Thanks for buying."), EMPTY},
        {N_("Unable to buy."), EMPTY},
        {N_("Nothing to sell."), EMPTY},
        {N_("Thanks for selling."), EMPTY},
        {N_("Unable to sell."), EMPTY},
        {N_("Unable to sell while trading."), EMPTY},
        {N_("Unable to sell unsellable item."), EMPTY},
        {N_("Online users: %d"), INT},
        {N_("Guild created."), EMPTY},
        {N_("You are already in guild."), EMPTY},
        {N_("Emperium check failed."), EMPTY},
        {N_("Unknown server response."), EMPTY},
        {N_("You have left the guild."), EMPTY},
        {N_("Could not invite user to guild."), GUILD},
        {N_("User rejected guild invite."), GUILD},
        {N_("User is now part of your guild."), GUILD},
        {N_("Your guild is full."), GUILD},
        {N_("Unknown guild invite response."), GUILD},
        {N_("%s has left your guild."), GUILD_STRING},
        {N_("You were kicked from guild."), EMPTY},
        {N_("%s has kicked from your guild."), GUILD_STRING},
        {N_("Failed to use item."), EMPTY},
        {N_("Unable to equip."), EMPTY},
        {N_("Could not create party."), EMPTY},
        {N_("Party successfully created."), EMPTY},
        {N_("You have left the party."), EMPTY},
        {N_("%s has joined your party."), PARTY_STRING},
        {N_("%s is already a member of a party."), PARTY_STRING},
        {N_("%s refused your invitation."), PARTY_STRING},
        {N_("%s is now a member of your party."), PARTY_STRING},
        {N_("%s can't join your party because party is full."), PARTY_STRING},
        {N_("QQQ Unknown invite response for %s."), PARTY_STRING},
        {N_("Experience sharing enabled."), PARTY},
        {N_("Experience sharing disabled."), PARTY},
        {N_("Experience sharing not possible."), PARTY},
        {N_("Item sharing enabled."), PARTY},
        {N_("Item sharing disabled."), PARTY},
        {N_("Item sharing not possible."), PARTY},
        {N_("%s has left your party."), PARTY_STRING},
        {N_("An unknown member tried to say: %s"), PARTY_STRING},
        {N_("%s is not in your party!"), PARTY_STRING},
    };
}
#endif