[calendar] enable english

This commit is contained in:
Andrea Vos 2021-09-14 18:38:17 +00:00
parent 7fcdf08333
commit 278eeeebf9
3 changed files with 6 additions and 4 deletions

View File

@ -255,7 +255,7 @@ profile:
defaultPronoun: 'they'
calendar:
enabled: false
enabled: true
route: 'calendar'
census:

View File

@ -1,5 +1,7 @@
import {Event, day, week, month, dayYear} from "../../src/calendar/helpers";
import {Event, day, week, month, dayYear, EventLevel} from "../../src/calendar/helpers";
export default [
new Event('LGBT History Month (UK)', 'Progress Pride', 2, month, EventLevel.Month),
new Event('LGBT History Month (US/Canada/Australia)', 'Progress Pride', 10, month, EventLevel.Month),
new Event('LGBT History Month (Ireland)', 'Progress Pride', 5, month, EventLevel.Month),
];

View File

@ -1,6 +1,6 @@
import { Day, Calendar } from './helpers';
import internationalEvents from '../../locale/_/events';
import localEvents from '../../locale/pl/events';
import localEvents from '../../data/events';
export const currentYear = new Calendar(
Day.today().year,