diff options
author | Debarshi Ray <debarshir@src.gnome.org> | 2012-03-06 20:06:32 +0800 |
---|---|---|
committer | Debarshi Ray <debarshir@src.gnome.org> | 2012-03-06 20:51:29 +0800 |
commit | 912a95b7ceb56e16854fa09af9c31cb33b6303ca (patch) | |
tree | d1a6a9a257cda1e6a2e9b354dbe678eef5a0d112 | |
parent | 1b141efdf1f662cb87a733afe402b1b3efaf07d6 (diff) | |
download | gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar.gz gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar.bz2 gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar.lz gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar.xz gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.tar.zst gsoc2013-empathy-912a95b7ceb56e16854fa09af9c31cb33b6303ca.zip |
Show date in local timezone instead of UTC
Fixes: https://bugzilla.gnome.org/661515
-rw-r--r-- | libempathy-gtk/empathy-chat-text-view.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libempathy-gtk/empathy-chat-text-view.c b/libempathy-gtk/empathy-chat-text-view.c index 60d642ccb..6bef4781e 100644 --- a/libempathy-gtk/empathy-chat-text-view.c +++ b/libempathy-gtk/empathy-chat-text-view.c @@ -414,7 +414,7 @@ chat_text_view_append_timestamp (EmpathyChatTextView *view, if (show_date) { /* Translators: timestamp displayed between conversations in * chat windows (strftime format string) */ - tmp = empathy_time_to_string_utc (timestamp, _("%A %B %d %Y")); + tmp = empathy_time_to_string_local (timestamp, _("%A %B %d %Y")); g_string_append (str, tmp); g_string_append (str, ", "); g_free (tmp); |