diff options
Diffstat (limited to 'calendar/gui/eventedit.c')
-rw-r--r-- | calendar/gui/eventedit.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/calendar/gui/eventedit.c b/calendar/gui/eventedit.c index 4ae35d5fe7..abd7670e8a 100644 --- a/calendar/gui/eventedit.c +++ b/calendar/gui/eventedit.c @@ -1285,7 +1285,7 @@ get_exception_string (time_t t) { static char buf[256]; - strftime (buf, sizeof(buf), "%a %b %d %Y", localtime (&t)); /* FIXME: how to i18n this? */ + strftime (buf, sizeof(buf), _("%a %b %d %Y"), localtime (&t)); return buf; } |