~ubuntu-branches/ubuntu/vivid/manaplus/vivid-proposed

« back to all changes in this revision

Viewing changes to src/resources/notifications.h

  • Committer: Package Import Robot
  • Author(s): Patrick Matthäi
  • Date: 2014-10-12 12:23:57 UTC
  • mfrom: (1.1.36)
  • Revision ID: package-import@ubuntu.com-20141012122357-7836sgv1j1v02cs2
Tags: 1.4.10.11-1
New upstream release.

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
            // TRANSLATORS: notification message
43
43
            N_("Unable to buy."),
44
44
            NotifyFlags::EMPTY},
 
45
        {"buy fail no money",
 
46
            // TRANSLATORS: notification message
 
47
            N_("Unable to buy. You not have enought money."),
 
48
            NotifyFlags::EMPTY},
 
49
        {"buy fail overweight",
 
50
            // TRANSLATORS: notification message
 
51
            N_("Unable to buy. You overweight."),
 
52
            NotifyFlags::EMPTY},
 
53
        {"buy fail too many items",
 
54
            // TRANSLATORS: notification message
 
55
            N_("Unable to buy. You have too many items."),
 
56
            NotifyFlags::EMPTY},
45
57
        {"sell empty",
46
58
            // TRANSLATORS: notification message
47
59
            N_("Nothing to sell."),
126
138
            // TRANSLATORS: notification message
127
139
            N_("Unable to equip."),
128
140
            NotifyFlags::EMPTY},
 
141
        {"equip failed level",
 
142
            // TRANSLATORS: notification message
 
143
            N_("Unable to equip because you have wrong level."),
 
144
            NotifyFlags::EMPTY},
129
145
        {"party create failed",
130
146
            // TRANSLATORS: notification message
131
147
            N_("Could not create party."),
138
154
            // TRANSLATORS: notification message
139
155
            N_("You have left the party."),
140
156
            NotifyFlags::EMPTY},
 
157
        {"party left deny",
 
158
            // TRANSLATORS: notification message
 
159
            N_("You cant left party on this map."),
 
160
            NotifyFlags::EMPTY},
 
161
        {"party kicked",
 
162
            // TRANSLATORS: notification message
 
163
            N_("You was kicked from party."),
 
164
            NotifyFlags::EMPTY},
 
165
        {"party kick deny",
 
166
            // TRANSLATORS: notification message
 
167
            N_("You cant be kicked from party on this map."),
 
168
            NotifyFlags::EMPTY},
141
169
        {"party user joined",
142
170
            // TRANSLATORS: notification message
143
171
            N_("%s has joined your party."),
190
218
            // TRANSLATORS: notification message
191
219
            N_("%s has left your party."),
192
220
            NotifyFlags::PARTY_STRING},
 
221
        {"party user left deny",
 
222
            // TRANSLATORS: notification message
 
223
            N_("%s cant be kicked from party on this map."),
 
224
            NotifyFlags::PARTY_STRING},
 
225
        {"party user kicked",
 
226
            // TRANSLATORS: notification message
 
227
            N_("%s has kicked from your party."),
 
228
            NotifyFlags::PARTY_STRING},
 
229
        {"party user kick deny",
 
230
            // TRANSLATORS: notification message
 
231
            N_("%s cant be kicked from party on this map."),
 
232
            NotifyFlags::PARTY_STRING},
193
233
        {"party unknown user msg",
194
234
            // TRANSLATORS: notification message
195
235
            N_("An unknown member tried to say: %s"),
231
271
            // TRANSLATORS: notification message
232
272
            N_("Trade with %s cancelled."),
233
273
            NotifyFlags::STRING},
 
274
        {"trade cancelled busy",
 
275
            // TRANSLATORS: notification message
 
276
            N_("Trade with %s cancelled, because player is busy"),
 
277
            NotifyFlags::STRING},
234
278
        {"trade error unknown",
235
279
            // TRANSLATORS: notification message
236
280
            N_("Unhandled trade cancel packet with %s"),
356
400
            NotifyFlags::EMPTY},
357
401
        {"homunculus feed ok",
358
402
            // TRANSLATORS: notification message
359
 
            N_("Your feed your homunculus."),
 
403
            N_("You feed your homunculus."),
360
404
            NotifyFlags::EMPTY},
361
405
        {"homunculus feed failed",
362
406
            // TRANSLATORS: notification message
363
407
            N_("You cant feed homunculus, because not have %s."),
364
 
            NotifyFlags::STRING}
 
408
            NotifyFlags::STRING},
 
409
        {"card insert failed",
 
410
            // TRANSLATORS: notification message
 
411
            N_("Card insert failed."),
 
412
            NotifyFlags::EMPTY},
 
413
        {"card insert success",
 
414
            // TRANSLATORS: notification message
 
415
            N_("Card inserted."),
 
416
            NotifyFlags::EMPTY}
365
417
    };
366
418
}  // namespace NotifyManager
367
419
#endif  // RESOURCES_NOTIFICATIONS_H