1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
|
from ..core import WesternCalendar, SUN
from ..registry_tools import iso_register
@iso_register('LT')
class Lithuania(WesternCalendar):
'Lithuania'
# Civil holidays
include_labour_day = True
FIXED_HOLIDAYS = WesternCalendar.FIXED_HOLIDAYS + (
(2, 16, "Restoration of the State Day"),
(3, 11, "Restoration of Independence Day"),
(6, 24, "St. John's Day"),
(7, 6, "Anniversary of the Coronation of King Mindaugas"),
)
# Christian holidays
include_easter_sunday = True
include_easter_monday = True
include_assumption = True
include_all_saints = True
include_christmas_eve = True
include_christmas = True
include_boxing_day = True
boxing_day_label = "Second day of Christmas"
def get_mothers_day(self, year):
return (
Lithuania.get_nth_weekday_in_month(year, 5, SUN, 1),
"Mother's day"
)
def get_fathers_day(self, year):
return (
Lithuania.get_nth_weekday_in_month(year, 6, SUN, 1),
"Father's day"
)
def get_variable_days(self, year):
# All Souls day was introduced as of 2020
# https://en.wikipedia.org/wiki/Public_holidays_in_Lithuania
self.include_all_souls = year >= 2020
days = super().get_variable_days(year)
days.append(self.get_mothers_day(year))
days.append(self.get_fathers_day(year))
return days
|