mirror of https://github.com/adamdruppe/arsd.git
useful month names
This commit is contained in:
parent
fadcce6082
commit
9f9cf2e290
16
calendar.d
16
calendar.d
|
@ -273,3 +273,19 @@ struct ICalParser {
|
||||||
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
immutable monthNames = [
|
||||||
|
"",
|
||||||
|
"January",
|
||||||
|
"February",
|
||||||
|
"March",
|
||||||
|
"April",
|
||||||
|
"May",
|
||||||
|
"June",
|
||||||
|
"July",
|
||||||
|
"August",
|
||||||
|
"September",
|
||||||
|
"October",
|
||||||
|
"November",
|
||||||
|
"December"
|
||||||
|
];
|
||||||
|
|
Loading…
Reference in New Issue