# HG changeset patch # User Sean Egan # Date 1169456553 0 # Node ID d54794a47c5646885790f144e678746b6c1cb840 # Parent 959b753fc92632d881edf97a6ff45e818e1aae70 I think this is all the instances of 'Gaim' within pidgin/ diff -r 959b753fc926 -r d54794a47c56 pidgin/gtkconn.c --- 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); diff -r 959b753fc926 -r d54794a47c56 pidgin/gtkutils.c --- 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); diff -r 959b753fc926 -r d54794a47c56 pidgin/plugins/gaiminc.c --- 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."), diff -r 959b753fc926 -r d54794a47c56 pidgin/plugins/gaimrc.c --- 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."), diff -r 959b753fc926 -r d54794a47c56 pidgin/plugins/relnot.c --- 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.
"), gaim_core_get_version(), cur_ver); diff -r 959b753fc926 -r d54794a47c56 pidgin/plugins/timestamp_format.c --- 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..."));