diff -r 044392e01c96 -r e70e589dde54 pidgin/plugins/timestamp_format.c --- a/pidgin/plugins/timestamp_format.c Sat Apr 07 22:46:39 2007 +0000 +++ b/pidgin/plugins/timestamp_format.c Sun Apr 08 13:25:35 2007 +0000 @@ -16,16 +16,19 @@ { 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);