diff options
author | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-15 21:13:07 +0800 |
---|---|---|
committer | Guillaume Desmottes <guillaume.desmottes@collabora.co.uk> | 2011-09-15 21:13:15 +0800 |
commit | e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe (patch) | |
tree | 50149c9f80b568d3281c64fc416c7f14215380c8 /libempathy-gtk/empathy-log-window.c | |
parent | 63ad9ebf15467a134ab044969faecbf3f4a2a758 (diff) | |
download | gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar.gz gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar.bz2 gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar.lz gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar.xz gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.tar.zst gsoc2013-empathy-e3327f1e82fbf9c386bbb0cc07a87d47ad89d6fe.zip |
log-window: fix translators comment
https://bugzilla.gnome.org/show_bug.cgi?id=659141
Diffstat (limited to 'libempathy-gtk/empathy-log-window.c')
-rw-r--r-- | libempathy-gtk/empathy-log-window.c | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/libempathy-gtk/empathy-log-window.c b/libempathy-gtk/empathy-log-window.c index 7c12ae209..9ef1e16f5 100644 --- a/libempathy-gtk/empathy-log-window.c +++ b/libempathy-gtk/empathy-log-window.c @@ -1744,9 +1744,8 @@ format_date_for_display (GDate *date) text = g_date_time_format (dt, "%A"); else text = g_date_time_format (dt, - C_("A date such as '23 May 2010', " - "%e is the day, %B the month and %Y the year", - "%e %B %Y")); + /* Translators: A date such as '23 May 2010' (strftime format) */ + _("%e %B %Y")); g_date_time_unref (dt); } |