Thu, 07 May 2009 19:34:27 +0000
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 :)
| libpurple/protocols/jabber/buddy.c | file | annotate | diff | comparison | revisions |
--- 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); }