diff plugins/notify.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 62c1e5e656d0
children 677d3cb193a1
line wrap: on
line diff
--- a/plugins/notify.c	Sun Feb 16 22:00:09 2003 +0000
+++ b/plugins/notify.c	Mon Feb 17 15:22:21 2003 +0000
@@ -583,21 +583,20 @@
 struct gaim_plugin_description desc; 
 struct gaim_plugin_description *gaim_plugin_desc() {
 	desc.api_version = PLUGIN_API_VERSION;
-	desc.name = g_strdup("Message Notification");
+	desc.name = g_strdup(_("Message Notification"));
 	desc.version = g_strdup(VERSION);
-	desc.description = g_strdup("Provides a variety of ways of notifying you of unread messages.");
+	desc.description = g_strdup(_("Provides a variety of ways of notifying you of unread messages."));
 	desc.authors = g_strdup("Etan Reisner &lt;deryni@eden.rutgers.edu>");
 	desc.url = g_strdup(WEBSITE);
 	return &desc;
 }
 
 char *name() {
-	return "Visual Notification";
+	return _("Message Notification");
 }
 
 char *description() {
-	return "Puts an asterisk in the title bar of all conversations"
-		" where you have not responded to a message yet.";
+	return _("Provides a variety of ways of notifying you of unread messages.");
 }
 
 GtkWidget *gaim_plugin_config_gtk() {