From 316f825b2ac718db509876c8b2ad11c2425266ca Mon Sep 17 00:00:00 2001 From: Bastien Nocera Date: Fri, 7 Nov 2014 14:58:22 +0100 Subject: [PATCH] Calendar: Remove leading zeros for 24h time format https://bugzilla.gnome.org/show_bug.cgi?id=658675 --- js/ui/calendar.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/ui/calendar.js b/js/ui/calendar.js index e639ef739..bb78622a9 100644 --- a/js/ui/calendar.js +++ b/js/ui/calendar.js @@ -74,7 +74,7 @@ function _formatEventTime(event, clockFormat, periodBegin, periodEnd) { case '24h': /* Translators: Shown in calendar event list, if 24h format, \u2236 is a ratio character, similar to : */ - ret = date.toLocaleFormat(C_("event list time", "%H\u2236%M")); + ret = date.toLocaleFormat(C_("event list time", "%k\u2236%M")); break; default: