comparison plugins/spellchk.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 dcc6c130c6d9
children 203741ac86b3
comparison
equal deleted inserted replaced
4584:126134f70c30 4585:2427d847e39c
390 } 390 }
391 391
392 struct gaim_plugin_description desc; 392 struct gaim_plugin_description desc;
393 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() { 393 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
394 desc.api_version = PLUGIN_API_VERSION; 394 desc.api_version = PLUGIN_API_VERSION;
395 desc.name = g_strdup("Text replacement"); 395 desc.name = g_strdup(_("Text replacement"));
396 desc.version = g_strdup(VERSION); 396 desc.version = g_strdup(VERSION);
397 desc.description = g_strdup("Replaces text in outgoing messages according to user-defined rules."); 397 desc.description = g_strdup(_("Replaces text in outgoing messages according to user-defined rules."));
398 desc.authors = g_strdup("Eric Warmehoven &lt;eric@warmenhoven.org>"); 398 desc.authors = g_strdup("Eric Warmehoven &lt;eric@warmenhoven.org>");
399 desc.url = g_strdup(WEBSITE); 399 desc.url = g_strdup(WEBSITE);
400 return &desc; 400 return &desc;
401 } 401 }
402 402
403 G_MODULE_EXPORT char *name() { 403 G_MODULE_EXPORT char *name() {
404 return "IM Spell Check"; 404 return _("Text replacement");
405 } 405 }
406 406
407 G_MODULE_EXPORT char *description() { 407 G_MODULE_EXPORT char *description() {
408 return "Watches outgoing IM text and corrects common spelling errors."; 408 return _("Replaces text in outgoing messages according to user-defined rules.");
409 } 409 }
410 410
411 G_MODULE_EXPORT GtkWidget *gaim_plugin_config_gtk() 411 G_MODULE_EXPORT GtkWidget *gaim_plugin_config_gtk()
412 { 412 {
413 GtkWidget *ret, *vbox, *win; 413 GtkWidget *ret, *vbox, *win;