1 -- For translation collector script
2 local N
= function(s
) return s
end
4 -----------------------------
5 -- DEFAULT CALENDAR CONFIG --
6 -----------------------------
8 -- Number of days in a month
9 calendar
.MONTH_DAYS
= 30
11 -- List of long month names
12 -- (also determines the number of months in a year)
13 calendar
.month_names
= {
14 N('January'), N('February'), N('March'), N('April'),
15 N('May'), N('June'), N('July'), N('August'),
16 N('September'), N('October'), N('November'), N('December')
19 -- (must have same length as `calendar.month.names`)
20 calendar
.month_names_short
= {
21 N('Jan'), N('Feb'), N('Mar'), N('Apr'),
22 N('May'), N('Jun'), N('Jul'), N('Aug'),
23 N('Sep'), N('Oct'), N('Nov'), N('Dec')
26 -- Long week day names
27 -- (also determines the number of days in a week)
28 calendar
.weekday_names
= {
29 N("Monday"), N("Tuesday"), N("Wednesday"),
30 N("Thursday"), N("Friday"), N("Saturday"), N("Sunday")
32 -- Short week day names
33 -- (must have same length as `calendar.weekday_names`)
34 calendar
.weekday_names_short
= {
35 N("Mo"), N("Tu"), N("We"), N("Th"), N("Fr"), N("Sa"), N("Su")
38 -- Cardinal number of the week day that marks the beginning of a week
39 calendar
.FIRST_WEEK_DAY
= 0