changeset 15381:d54794a47c56

I think this is all the instances of 'Gaim' within pidgin/
author Sean Egan <seanegan@gmail.com>
date Mon, 22 Jan 2007 09:02:33 +0000
parents 959b753fc926
children a2689835f54a
files pidgin/gtkconn.c pidgin/gtkutils.c pidgin/plugins/gaiminc.c pidgin/plugins/gaimrc.c pidgin/plugins/relnot.c pidgin/plugins/timestamp_format.c
diffstat 6 files changed, 8 insertions(+), 6 deletions(-) [+]
line wrap: on
line diff
--- a/pidgin/gtkconn.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/gtkconn.c	Mon Jan 22 09:02:33 2007 +0000
@@ -177,7 +177,7 @@
 
 		p = g_strdup_printf(_("%s disconnected"), n);
 		s = g_strdup_printf(_("%s\n\n"
-				"Gaim will not attempt to reconnect the account until you "
+				PIDGIN_NAME " will not attempt to reconnect the account until you "
 				"correct the error and re-enable the account."), text);
 		gaim_notify_error(NULL, NULL, p, s);
 		g_free(p);
--- a/pidgin/gtkutils.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/gtkutils.c	Mon Jan 22 09:02:33 2007 +0000
@@ -1409,7 +1409,7 @@
 
 			str = g_strdup_printf(_("Cannot send folder %s."), basename);
 			gaim_notify_error(NULL, NULL,
-					  str,_("Gaim cannot transfer a folder. You will need to send the files within individually"));
+					  str,_(PIDGIN_NAME " cannot transfer a folder. You will need to send the files within individually"));
 
 			g_free(str);
 
--- a/pidgin/plugins/gaiminc.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/plugins/gaiminc.c	Mon Jan 22 09:02:33 2007 +0000
@@ -88,7 +88,7 @@
 	GAIM_PRIORITY_DEFAULT,                            /**< priority       */
 
 	GAIMINC_PLUGIN_ID,                                /**< id             */
-	N_("Gaim Demonstration Plugin"),                  /**< name           */
+	N_(PIDGIN_NAME " Demonstration Plugin"),                  /**< name           */
 	VERSION,                                          /**< version        */
 	                                                  /**  summary        */
 	N_("An example plugin that does stuff - see the description."),
--- a/pidgin/plugins/gaimrc.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/plugins/gaimrc.c	Mon Jan 22 09:02:33 2007 +0000
@@ -613,7 +613,7 @@
 	NULL,
 	GAIM_PRIORITY_DEFAULT,
 	"gaimrc",
-	N_("Gaim GTK+ Theme Control"),
+	N_(PIDGIN_NAME " GTK+ Theme Control"),
 	VERSION,
 	N_("Provides access to commonly used gtkrc settings."),
 	N_("Provides access to commonly used gtkrc settings."),
--- a/pidgin/plugins/relnot.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/plugins/relnot.c	Mon Jan 22 09:02:33 2007 +0000
@@ -38,6 +38,8 @@
 #include "util.h"
 #include "version.h"
 
+#include "gtkgaim.h"
+
 /* 1 day */
 #define MIN_CHECK_INTERVAL 60 * 60 * 24
 
@@ -66,7 +68,7 @@
 	while(*changelog == '\n') changelog++;
 
 	message = g_string_new("");
-	g_string_append_printf(message, _("You are using Gaim version %s.  The "
+	g_string_append_printf(message, _("You are using " PIDGIN_NAME " version %s.  The "
 			"current version is %s.<hr>"),
 			gaim_core_get_version(), cur_ver);
 
--- a/pidgin/plugins/timestamp_format.c	Mon Jan 22 08:37:53 2007 +0000
+++ b/pidgin/plugins/timestamp_format.c	Mon Jan 22 09:02:33 2007 +0000
@@ -24,7 +24,7 @@
 
 	ppref = gaim_plugin_pref_new_with_name_and_label(
 			"/plugins/gtk/timestamp_format/force_24hr",
-			_("_Force (traditional Gaim) 24-hour time format"));
+			_("_Force (traditional " PIDGIN_NAME ") 24-hour time format"));
 	gaim_plugin_pref_frame_add(frame, ppref);
 
 	ppref = gaim_plugin_pref_new_with_label(_("Show dates in..."));