# HG changeset patch # User Mark Doliner # Date 1194510730 0 # Node ID cd0486d8caa8151fae802f1b192af1fd88b41bd9 # Parent 184f5991502dd4928452e84b0e6487e415bf10d7 In an email to the Pidgin devel mailing list on 3 Nov 2007, Ethan postulated that these strings should be "New status..." and "Saved statuses..." instead of just "New..." and "Saved..." and I agree completely diff -r 184f5991502d -r cd0486d8caa8 pidgin/gtkstatusbox.c --- a/pidgin/gtkstatusbox.c Thu Nov 08 08:28:09 2007 +0000 +++ b/pidgin/gtkstatusbox.c Thu Nov 08 08:32:10 2007 +0000 @@ -1069,8 +1069,8 @@ add_popular_statuses(status_box); pidgin_status_box_add_separator(PIDGIN_STATUS_BOX(status_box)); - pidgin_status_box_add(PIDGIN_STATUS_BOX(status_box), PIDGIN_STATUS_BOX_TYPE_CUSTOM, NULL, _("New..."), NULL, NULL); - pidgin_status_box_add(PIDGIN_STATUS_BOX(status_box), PIDGIN_STATUS_BOX_TYPE_SAVED, NULL, _("Saved..."), NULL, NULL); + pidgin_status_box_add(PIDGIN_STATUS_BOX(status_box), PIDGIN_STATUS_BOX_TYPE_CUSTOM, NULL, _("New status..."), NULL, NULL); + pidgin_status_box_add(PIDGIN_STATUS_BOX(status_box), PIDGIN_STATUS_BOX_TYPE_SAVED, NULL, _("Saved statuses..."), NULL, NULL); if (pixbuf) g_object_unref(G_OBJECT(pixbuf)); status_menu_refresh_iter(status_box);