This will define the hour format. Based on the locale, it could be a 24-hour format, or a 12-hour format with meridian indicator.
The original English version will show as "1:23 pm" but you could display it as "13:23" if that makes sense.
You can use the following values:
%l - Hour of the day, 12-hour clock, blank-padded ( 1..12)
%H - Hour of the day, 24-hour clock, zero-padded (00..23)
%M - Minute of the hour (00..59)
%P - Meridian indicator, lowercase ("am" or "pm")
For example, "1:23 pm" would be "%l:%M %P".
For example, "13:23" would be %H:%M".
This will define the hour format. Based on the locale, it could be a 24-hour format, or a 12-hour format with meridian indicator.
The original English version will show as "1:23 pm" but you could display it as "13:23" if that makes sense.
You can use the following values:
%l - Hour of the day, 12-hour clock, blank-padded ( 1..12)
%H - Hour of the day, 24-hour clock, zero-padded (00..23)
%M - Minute of the hour (00..59)
%P - Meridian indicator, lowercase ("am" or "pm")
For example, "1:23 pm" would be "%l:%M %P".
For example, "13:23" would be %H:%M".