Revision e63e04473bc8404ed3fd45c8027ad0b5aa0f14ae

nwalp at pidgin.im nwalp at pidgin.im
Sun Apr 8 09:32:23 EDT 2007


o   -----------------------------------------------------------------
|   Revision: e63e04473bc8404ed3fd45c8027ad0b5aa0f14ae
|   Ancestor: d064a7734e5f0180f59fd1a438a5cd4d5800d02d
|   Author: nwalp at pidgin.im
|   Date: 2007-04-08T13:25:35
|   Branch: im.pidgin.pidgin
|   
|   Modified files:
|           pidgin/plugins/gaiminc.c pidgin/plugins/pidginrc.c
|           pidgin/plugins/relnot.c pidgin/plugins/timestamp_format.c
|           pidgin/plugins/win32/winprefs/winprefs.c
|   
|   ChangeLog: 
|   
|   more help for translators (I removed a few PIDGIN_NAME references
|   because they'd have been irritating to remove, and I really don't
|   see much point to them, unless we're gonna rename again)
|   
|   ============================================================
|   --- pidgin/plugins/gaiminc.c	e97aff34dcdaadea0721178b454183881c7cd4dc
|   +++ pidgin/plugins/gaiminc.c	9cccc4bca4ea1346bb0c64b9666d765b4988e86f
|   @@ -88,7 +88,7 @@ static PurplePluginInfo info =
|    	PURPLE_PRIORITY_DEFAULT,                            /**< priority       */
|    
|    	PURPLEINC_PLUGIN_ID,                                /**< id             */
|   -	N_(PIDGIN_NAME " Demonstration Plugin"),                  /**< name           */
|   +	N_("Pidgin Demonstration Plugin"),                  /**< name           */
|    	VERSION,                                          /**< version        */
|    	                                                  /**  summary        */
|    	N_("An example plugin that does stuff - see the description."),
|   ============================================================
|   --- pidgin/plugins/pidginrc.c	2e61819af2fc2c32070c7260310d3d213d95c1c7
|   +++ pidgin/plugins/pidginrc.c	b4c63ae7f06d8a125de6b3c3ba7418780e8f63f0
|   @@ -613,7 +613,7 @@ static PurplePluginInfo purplerc_info =
|    	NULL,
|    	PURPLE_PRIORITY_DEFAULT,
|    	"purplerc",
|   -	N_(PIDGIN_NAME " GTK+ Theme Control"),
|   +	N_("Pidgin GTK+ Theme Control"),
|    	VERSION,
|    	N_("Provides access to commonly used gtkrc settings."),
|    	N_("Provides access to commonly used gtkrc settings."),
|   ============================================================
|   --- pidgin/plugins/relnot.c	b57cebc0565439c26383aac26eadc819ee3d8a9c
|   +++ pidgin/plugins/relnot.c	58ce5fd485d2a831c5a7902fd2809ef29ac03f61
|   @@ -68,9 +68,9 @@ version_fetch_cb(PurpleUtilFetchUrlData 
|    	while(*changelog == '\n') changelog++;
|    
|    	message = g_string_new("");
|   -	g_string_append_printf(message, _("You are using " PIDGIN_NAME " version %s.  The "
|   +	g_string_append_printf(message, _("You are using %s version %s.  The "
|    			"current version is %s.<hr>"),
|   -			purple_core_get_version(), cur_ver);
|   +			PIDGIN_NAME, purple_core_get_version(), cur_ver);
|    
|    	if(*changelog) {
|    		formatted = purple_strdup_withhtml(changelog);
|   ============================================================
|   --- pidgin/plugins/timestamp_format.c	4a4e681f7b53d6dad627be03ebe7dbf0296a92ed
|   +++ pidgin/plugins/timestamp_format.c	f3359f51d4d40b84fb6863963c84936a2e92bf50
|   @@ -16,16 +16,19 @@ get_plugin_pref_frame(PurplePlugin *plug
|    {
|    	PurplePluginPrefFrame *frame;
|    	PurplePluginPref *ppref;
|   +	char *tmp;
|    
|    	frame = purple_plugin_pref_frame_new();
|    
|    	ppref = purple_plugin_pref_new_with_label(_("Timestamp Format Options"));
|    	purple_plugin_pref_frame_add(frame, ppref);
|    
|   +	tmp = g_strdup_printf(_("_Force (traditional %s) 24-hour time format"), PIDGIN_NAME);
|    	ppref = purple_plugin_pref_new_with_name_and_label(
|    			"/plugins/gtk/timestamp_format/force_24hr",
|   -			_("_Force (traditional " PIDGIN_NAME ") 24-hour time format"));
|   +			tmp);
|    	purple_plugin_pref_frame_add(frame, ppref);
|   +	g_free(tmp);
|    
|    	ppref = purple_plugin_pref_new_with_label(_("Show dates in..."));
|    	purple_plugin_pref_frame_add(frame, ppref);
|   ============================================================
|   --- pidgin/plugins/win32/winprefs/winprefs.c	6b0ece5d2110f41721a5368e472dfb5ab9837dbc
|   +++ pidgin/plugins/win32/winprefs/winprefs.c	0057886806a45eb16edb200b34c1f398d695a458
|   @@ -292,6 +292,7 @@ static GtkWidget* get_config_frame(Purpl
|    	GtkWidget *button;
|    	char *gtk_version = NULL;
|    	char *run_key_val;
|   +	char *tmp;
|    
|    	ret = gtk_vbox_new(FALSE, 18);
|    	gtk_container_set_border_width(GTK_CONTAINER(ret), 12);
|   @@ -312,7 +313,9 @@ static GtkWidget* get_config_frame(Purpl
|    
|    	/* Autostart */
|    	vbox = pidgin_make_frame(ret, _("Startup"));
|   -	button = gtk_check_button_new_with_mnemonic(_("_Start " PIDGIN_NAME " on Windows startup"));
|   +	tmp = g_strdup_printf(_("_Start %s on Windows startup"), PIDGIN_NAME);
|   +	button = gtk_check_button_new_with_mnemonic(tmp);
|   +	g_free(tmp);
|    	gtk_box_pack_start(GTK_BOX(vbox), button, FALSE, FALSE, 0);
|    
|    	if ((run_key_val = wpurple_read_reg_string(HKEY_CURRENT_USER, RUNKEY, "Purple"))
|   @@ -365,8 +368,8 @@ static PurplePluginInfo info =
|    	WINPREFS_PLUGIN_ID,
|    	N_("Pidgwin Options"),
|    	VERSION,
|   -	N_("Options specific to Windows " PIDGIN_NAME "."),
|   -	N_("Provides options specific to Windows " PIDGIN_NAME ", such as buddy list docking."),
|   +	N_("Options specific to Pidgin for Windows."),
|   +	N_("Provides options specific to Pidgin for Windows , such as buddy list docking."),
|    	"Herman Bloggs <hermanator12002 at yahoo.com>",
|    	PURPLE_WEBSITE,
|    	plugin_load,

To get the patch for this revision, please do this:
mtn log --last 1 --diffs --from e63e04473bc8404ed3fd45c8027ad0b5aa0f14ae


More information about the Commits mailing list