Calendar: Remove leading zeros for 24h time format

https://bugzilla.gnome.org/show_bug.cgi?id=658675
This commit is contained in:
Bastien Nocera 2014-11-07 14:58:22 +01:00
parent 35fcd16992
commit 316f825b2a

View File

@ -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: