comparison plugins/statenotify.c @ 6441:3683471e1417

[gaim-migrate @ 6949] Bjoern Voigt writes: "I prepared an updated German translation (file i18n18a.patch). i18n18a.patch contains: - updated German translation - src/gtkprivacy.c added to po/POTFILES.in - marked some forgotten strings in plugins/statenotify.c and src/protocols/trepia/trepia.c with _()" committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Tue, 12 Aug 2003 12:38:29 +0000
parents 88f57a755373
children 70d5122bc3ff
comparison
equal deleted inserted replaced
6440:ded6796da6b9 6441:3683471e1417
25 } 25 }
26 26
27 static void 27 static void
28 buddy_away_cb(GaimConnection *gc, char *who, void *data) 28 buddy_away_cb(GaimConnection *gc, char *who, void *data)
29 { 29 {
30 write_status(gc, who, "has gone away."); 30 write_status(gc, who, _("has gone away."));
31 } 31 }
32 32
33 static void 33 static void
34 buddy_unaway_cb(GaimConnection *gc, char *who, void *data) 34 buddy_unaway_cb(GaimConnection *gc, char *who, void *data)
35 { 35 {
36 write_status(gc, who, "is no longer away."); 36 write_status(gc, who, _("is no longer away."));
37 } 37 }
38 38
39 static void 39 static void
40 buddy_idle_cb(GaimConnection *gc, char *who, void *data) 40 buddy_idle_cb(GaimConnection *gc, char *who, void *data)
41 { 41 {
42 write_status(gc, who, "has become idle."); 42 write_status(gc, who, _("has become idle."));
43 } 43 }
44 44
45 static void 45 static void
46 buddy_unidle_cb(GaimConnection *gc, char *who, void *data) 46 buddy_unidle_cb(GaimConnection *gc, char *who, void *data)
47 { 47 {
48 write_status(gc, who, "is no longer idle."); 48 write_status(gc, who, _("is no longer idle."));
49 } 49 }
50 50
51 static gboolean 51 static gboolean
52 plugin_load(GaimPlugin *plugin) 52 plugin_load(GaimPlugin *plugin)
53 { 53 {