comparison plugins/iconaway.c @ 4113:74d27aa5b686

[gaim-migrate @ 4329] "I've added some plugin files to POTFILES.in, I then marked-up some strings with _()." -- Nicola's Lichtmaier (niqueco) committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Sun, 22 Dec 2002 18:35:18 +0000
parents 9682c0e022c6
children 59751fe608c5
comparison
equal deleted inserted replaced
4112:12552607e88c 4113:74d27aa5b686
42 } 42 }
43 43
44 struct gaim_plugin_description desc; 44 struct gaim_plugin_description desc;
45 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { 45 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
46 desc.api_version = PLUGIN_API_VERSION; 46 desc.api_version = PLUGIN_API_VERSION;
47 desc.name = g_strdup("Iconify on away"); 47 desc.name = g_strdup(_("Iconify on away"));
48 desc.version = g_strdup(VERSION); 48 desc.version = g_strdup(VERSION);
49 desc.description = g_strdup("Iconifies the away box and the buddy list when you go away."); 49 desc.description = g_strdup(_("Iconifies the away box and the buddy list when you go away."));
50 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>"); 50 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
51 desc.url = g_strdup(WEBSITE); 51 desc.url = g_strdup(WEBSITE);
52 return &desc; 52 return &desc;
53 } 53 }
54 54
55 G_MODULE_EXPORT char *name() { 55 G_MODULE_EXPORT char *name() {
56 return "Iconify On Away"; 56 return _("Iconify On Away");
57 } 57 }
58 58
59 G_MODULE_EXPORT char *description() { 59 G_MODULE_EXPORT char *description() {
60 return "Iconifies the away box and the buddy list when you go away."; 60 return _("Iconifies the away box and the buddy list when you go away.");
61 } 61 }