~ubuntu-branches/ubuntu/trusty/irssi-plugin-xmpp/trusty

« back to all changes in this revision

Viewing changes to src/fe-common/module-formats.c

  • Committer: Bazaar Package Importer
  • Author(s): David Ammouial
  • Date: 2009-05-12 12:14:44 UTC
  • mfrom: (1.1.3 upstream) (2.1.2 sid)
  • Revision ID: james.westby@ubuntu.com-20090512121444-5jeho5h3zsy4oij7
Tags: 0.13+cvs20090406-1
* New CVS snapshot, built against irssi-dev 0.8.13:
  - New features and bugfixes.
  - Fix segfault when successfully identified (Closes: #521227).
  - Fix build error (Closes: #527697)
* Depend on irssi >=0.8.13, build-depend on irssi-dev >=0.8.13.
* Bump Standards-Version to 3.8.1 (no changes needed).
* Add INTERNAL to documentation files.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
/*
2
 
 * $Id: module-formats.c,v 1.20 2008/05/25 17:23:23 errtu Exp $
 
2
 * $Id: module-formats.c,v 1.24 2008/12/08 11:16:19 cdidier Exp $
3
3
 *
4
4
 * Copyright (C) 2007 Colin DIDIER
5
5
 *
45
45
        /* ---- */
46
46
        { NULL, "Subscription", 0, { 0 } },
47
47
 
48
 
        { "suscribe", "$0: wants to subscribe to your presence {comment $1}", 2, { 0, 0 } },
 
48
        { "suscribe", "$0: wants to subscribe to your presence {comment $1} (accept or deny?)", 2, { 0, 0 } },
49
49
        { "suscribed", "$0: wants you to see his/her presence", 1, { 0 } },
50
50
        { "unsuscribe", "$0: doesn't want to see your presence anymore", 1 , { 0 } },
51
51
        { "unsuscribed", "$0: doesn't want you to see his/her presence anymore", 1 , { 0 } },
90
90
        { "default_event", "$1 $2", 3, { 0, 0, 0 } },
91
91
        { "default_error", "ERROR $1 $2", 3, { 0, 0, 0 } },
92
92
 
 
93
        { NULL, "Regisration", 0, { 0 } },
 
94
 
 
95
        { "xmpp_registration_started", "Registering {nick $0@$1}...", 2, { 0, 0 } },
 
96
        { "xmpp_registration_succeed", "Registration of {nick $0@$1} succeeded", 2, { 0, 0 } },
 
97
        { "xmpp_registration_failed", "Registration of {nick $0@$1} failed {comment $2}", 3, { 0, 0, 0 } },
 
98
 
93
99
        { NULL, NULL, 0, { 0 } }
94
100
};