diff 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
line wrap: on
line diff
--- a/plugins/spellchk.c	Sun Feb 16 22:00:09 2003 +0000
+++ b/plugins/spellchk.c	Mon Feb 17 15:22:21 2003 +0000
@@ -392,20 +392,20 @@
 struct gaim_plugin_description desc; 
 G_MODULE_EXPORT struct gaim_plugin_description *gaim_plugin_desc() {
 	desc.api_version = PLUGIN_API_VERSION;
-	desc.name = g_strdup("Text replacement");
+	desc.name = g_strdup(_("Text replacement"));
 	desc.version = g_strdup(VERSION);
-	desc.description = g_strdup("Replaces text in outgoing messages according to user-defined rules.");
+	desc.description = g_strdup(_("Replaces text in outgoing messages according to user-defined rules."));
 	desc.authors = g_strdup("Eric Warmehoven &lt;eric@warmenhoven.org>");
 	desc.url = g_strdup(WEBSITE);
 	return &desc;
 }
  
 G_MODULE_EXPORT char *name() {
-	return "IM Spell Check";
+	return _("Text replacement");
 }
 
 G_MODULE_EXPORT char *description() {
-	return "Watches outgoing IM text and corrects common spelling errors.";
+	return _("Replaces text in outgoing messages according to user-defined rules.");
 }
 
 G_MODULE_EXPORT GtkWidget *gaim_plugin_config_gtk()