aboutsummaryrefslogtreecommitdiffstats
path: root/mail/message-list.c
diff options
context:
space:
mode:
Diffstat (limited to 'mail/message-list.c')
-rw-r--r--mail/message-list.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/mail/message-list.c b/mail/message-list.c
index 9d08d04308..32b27de593 100644
--- a/mail/message-list.c
+++ b/mail/message-list.c
@@ -969,7 +969,7 @@ filter_date (const void *data)
if (then.tm_mday == now.tm_mday &&
then.tm_mon == now.tm_mon &&
then.tm_year == now.tm_year) {
- strftime (buf, 26, _("Today %T"), &then);
+ strftime (buf, 26, _("Today %l:%M %p"), &then);
done = TRUE;
}
if (!done) {
@@ -978,7 +978,7 @@ filter_date (const void *data)
if (then.tm_mday == yesterday.tm_mday &&
then.tm_mon == yesterday.tm_mon &&
then.tm_year == yesterday.tm_year) {
- strftime (buf, 26, _("Yesterday %T"), &then);
+ strftime (buf, 26, _("Yesterday %l:%M %p"), &then);
done = TRUE;
}
}
@@ -990,7 +990,7 @@ filter_date (const void *data)
if (then.tm_mday == yesterday.tm_mday &&
then.tm_mon == yesterday.tm_mon &&
then.tm_year == yesterday.tm_year) {
- strftime (buf, 26, _("%a %T"), &then);
+ strftime (buf, 26, _("%a %l:%M %p"), &then);
done = TRUE;
break;
}
@@ -998,7 +998,7 @@ filter_date (const void *data)
}
if (!done) {
if (then.tm_year == now.tm_year) {
- strftime (buf, 26, _("%b %d %T"), &then);
+ strftime (buf, 26, _("%b %d %l:%M %p"), &then);
} else {
strftime (buf, 26, _("%b %d %Y"), &then);
}