summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMarcus Lundblad <malu@pidgin.im>2009-05-07 19:34:27 +0000
committerMarcus Lundblad <malu@pidgin.im>2009-05-07 19:34:27 +0000
commit4fe1a16a42795cf1785660b62ba4df281d2df76d (patch)
treefc3f61ecb185dda64f08977e50c627d42195e4b0
parent5934050caefec94ad65e619f3b77acd5dc91387a (diff)
downloadpidgin-4fe1a16a42795cf1785660b62ba4df281d2df76d.tar.gz
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 :)
-rw-r--r--libpurple/protocols/jabber/buddy.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/libpurple/protocols/jabber/buddy.c b/libpurple/protocols/jabber/buddy.c
index c6996d0b7a..183cf4e39b 100644
--- a/libpurple/protocols/jabber/buddy.c
+++ b/libpurple/protocols/jabber/buddy.c
@@ -1052,7 +1052,7 @@ static void jabber_buddy_info_show_if_ready(JabberBuddyInfo *jbi)
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);
}