comparison plugins/docklet/docklet.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 493f050dc11a
children 864518c3767d
comparison
equal deleted inserted replaced
4584:126134f70c30 4585:2427d847e39c
496 } 496 }
497 497
498 struct gaim_plugin_description desc; 498 struct gaim_plugin_description desc;
499 struct gaim_plugin_description *gaim_plugin_desc() { 499 struct gaim_plugin_description *gaim_plugin_desc() {
500 desc.api_version = PLUGIN_API_VERSION; 500 desc.api_version = PLUGIN_API_VERSION;
501 desc.name = g_strdup(_("Tray Icon")); 501 desc.name = g_strdup(_("System Tray Icon"));
502 desc.version = g_strdup(VERSION); 502 desc.version = g_strdup(VERSION);
503 desc.description = g_strdup(_("Interacts with a Notification Area applet (in GNOME or KDE, for example) to display the current status of Gaim, allow fast access to commonly used functions, and to toggle display of the buddy list or login window. Also allows messages to be queued until the icon is clicked, similar to ICQ.")); 503 desc.description = g_strdup(_("Interacts with a Notification Area applet (in GNOME or KDE, for example) to display the current status of Gaim, allow fast access to commonly used functions, and to toggle display of the buddy list or login window. Also allows messages to be queued until the icon is clicked, similar to ICQ."));
504 desc.authors = g_strdup(_("Robert McQueen &lt;robot101@debian.org>")); 504 desc.authors = g_strdup(_("Robert McQueen &lt;robot101@debian.org>"));
505 desc.url = g_strdup(WEBSITE); 505 desc.url = g_strdup(WEBSITE);
506 return &desc; 506 return &desc;