comparison plugins/chatlist.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 da5e1b57adb0
children 42d53c416bb9
comparison
equal deleted inserted replaced
4584:126134f70c30 4585:2427d847e39c
402 } 402 }
403 403
404 struct gaim_plugin_description desc; 404 struct gaim_plugin_description desc;
405 struct gaim_plugin_description *gaim_plugin_desc() { 405 struct gaim_plugin_description *gaim_plugin_desc() {
406 desc.api_version = PLUGIN_API_VERSION; 406 desc.api_version = PLUGIN_API_VERSION;
407 desc.name = g_strdup("Chat List"); 407 desc.name = g_strdup(_("Chat List"));
408 desc.version = g_strdup(VERSION); 408 desc.version = g_strdup(VERSION);
409 desc.description = g_strdup("Allows you to add chat rooms to your buddy list."); 409 desc.description = g_strdup(_("Allows you to add chat rooms to your buddy list."));
410 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>"); 410 desc.authors = g_strdup("Eric Warmenhoven &lt;eric@warmenhoven.org>");
411 desc.url = g_strdup(WEBSITE); 411 desc.url = g_strdup(WEBSITE);
412 return &desc; 412 return &desc;
413 } 413 }
414 414
415 G_MODULE_EXPORT char *name() 415 G_MODULE_EXPORT char *name()
416 { 416 {
417 return "Chat List"; 417 return _("Chat List");
418 } 418 }
419 419
420 G_MODULE_EXPORT char *description() 420 G_MODULE_EXPORT char *description()
421 { 421 {
422 return "Allows you to add chat rooms to your buddy list. Click the configure button to choose" 422 return _("Allows you to add chat rooms to your buddy list. Click the configure button to choose"
423 " which rooms."; 423 " which rooms.");
424 } 424 }