# HG changeset patch # User Marcus Lundblad # Date 1241724867 0 # Node ID 2760311c492acc25d3131a99d1e8a65d37c5baaa # Parent 9ce0c5bc922c81c9d2eef512576b7bd0f4d9851d 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 :) diff -r 9ce0c5bc922c -r 2760311c492a libpurple/protocols/jabber/buddy.c --- 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); }