comparison plugins/autorecon.c @ 4585:2427d847e39c

[gaim-migrate @ 4869] Matthew Smith (smigs) writes: " - spelling+spec.diff corrects "formated" to "formatted" in oscar.c & all the translations, and removes "--disable-artsc" from gaim.spec.in as that configure option no longer exists. - plugins.diff marks up the plugin descriptions and names with _() if it wasn't already present, and removes the differences between the two descriptions/names (i.e. *char name and desc.name) that were present for some plugins. I only did this for plugins that get compiled by default, though.. not much point in doing the others =P " committer: Tailor Script <tailor@pidgin.im>
author Luke Schierer <lschiere@pidgin.im>
date Mon, 17 Feb 2003 15:22:21 +0000
parents b5a50a6a13b0
children 3b8e6c2b4a50
comparison
equal deleted inserted replaced
4584:126134f70c30 4585:2427d847e39c
53 */ 53 */
54 54
55 struct gaim_plugin_description desc; 55 struct gaim_plugin_description desc;
56 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { 56 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
57 desc.api_version = PLUGIN_API_VERSION; 57 desc.api_version = PLUGIN_API_VERSION;
58 desc.name = g_strdup("Autoreconnect"); 58 desc.name = g_strdup(_("Autoreconnect"));
59 desc.version = g_strdup(VERSION); 59 desc.version = g_strdup(VERSION);
60 desc.description = g_strdup(_("When you are kicked offline, this reconnects you.")); 60 desc.description = g_strdup(_("When you are kicked offline, this reconnects you."));
61 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>"); 61 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
62 desc.url = g_strdup(WEBSITE); 62 desc.url = g_strdup(WEBSITE);
63 return &desc; 63 return &desc;