elementary / elementary/granite
Time format inconsistent?
- Dominant language
- Vala
- Stars
- 329
- Forks
- 65
- Avg merge
- 1d 14h
- Merged PRs (30d)
- 31
Description
While looking at https://github.com/elementary/granite/pull/252#pullrequestreview-186485441 I noticed that time format is inconsistent between 12h and 24h format. The 24h format 's hour has a leading 0 (range 00 to 23) (`%H`) while in the 12h format single digits are preceded by a blank space (range 1 to 12) (`%l`).

12h format: `%-l:%M %p`
24h format: `%H:%M`
Shouldn't we use `%k` (`%-k:%M`) for the 24h format?
This would result in:

Contributor guide
Assessment
This issue has not been assessed yet.