5,838
edits
|
|-
|d
|%d
|Displays the day as a number without a leading zero (1-31). Note that Cumulus MX requires a ' ' (space), '%' or other modifier to be included, as 'd' on its own returns full 'short date').
|-
|dd
|ddd
|ddd
|Displays the day as an abbreviation (Sun-Sat) using the strings appropriate to the
|-
|dddd
|dddd
|Displays the day as a full name (Sunday-Saturday) using the strings appropriate to the
|-
|ddddd
|d (as single character format)
|Displays the date using the format given by the
|-
|dddddd
|D
|Displays the date using the format given by the
|-
|m
|%M
|Displays the month as a number without a leading zero (1-12).
*Cumulus 1.x.y:If the 'm' specifier immediately follows an h or hh specifier, the minute rather than the month is displayed.
*Cumulus MX: Note that including a ' ' (space) or '%' before the M makes it a custom modifier and any initial zero is suppressed. ('M' on its own returns both Month and Day according to local format e.g. 07 July).
|-
|mm
|MM
|Displays the month as a number with a leading zero (01-12).
*Cumulus 1.x.y:If the 'm' specifier immediately follows an h or hh specifier, the minute rather than the month is displayed.
|-
|mmm
|Displays the year as a four-digit number (0000-9999).
|-
|(
|h
|Displays the hour (12 hour clock) without a leading zero (1-12).
|Displays the hour using 24 hour clock without a leading zero (0-23).
|-
|(
|hh
|Displays the hour (12 hour clock) with a leading zero (01-12).
|-
|ampm
|(see above for 12 hour formats)
|Uses the 12-hour clock for the preceding h or hh specifier, and displays the contents of the Windows AM string for any hour before noon, and the contents of the Windows PM string for any hour after noon.
|-
| |||
edits