Mercurial > pidgin
changeset 26844:2760311c492a
Changed the message string for the "last logged in" value to "Logged off"
since that is actually what it is, the time of signing off.
Thanks to Paul for the hint :)
author | Marcus Lundblad <ml@update.uu.se> |
---|---|
date | Thu, 07 May 2009 19:34:27 +0000 |
parents | 9ce0c5bc922c |
children | 12c45d148c32 84325b6e3568 45795fd9c0a9 |
files | libpurple/protocols/jabber/buddy.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/libpurple/protocols/jabber/buddy.c Thu May 07 19:24:02 2009 +0000 +++ b/libpurple/protocols/jabber/buddy.c Thu May 07 19:34:27 2009 +0000 @@ -1052,7 +1052,7 @@ char *last = purple_str_seconds_to_string(jbi->last_seconds); gchar *message = g_strdup_printf(_("%s ago"), last); purple_notify_user_info_prepend_pair(user_info, - _("Last logged in"), message); + _("Logged off"), message); g_free(last); g_free(message); }