Mercurial > pidgin.yaz
changeset 21166:cd0486d8caa8
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
author | Mark Doliner <mark@kingant.net> |
---|---|
date | Thu, 08 Nov 2007 08:32:10 +0000 |
parents | 184f5991502d |
children | 8adc8f180be8 |
files | pidgin/gtkstatusbox.c |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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);