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
|
from ..core import WesternCalendar
from ..registry_tools import iso_register
@iso_register('SK')
class Slovakia(WesternCalendar):
'Slovakia'
# Christian holidays
include_epiphany = True
include_easter_monday = True
include_good_friday = True
include_all_saints = True
include_christmas_eve = True
include_boxing_day = True
boxing_day_label = "St. Stephen's Day (The Second Christmas Day)"
# Civil holidays
include_labour_day = True
FIXED_HOLIDAYS = WesternCalendar.FIXED_HOLIDAYS + (
(1, 1, "Day of the Establishment of the Slovak Republic"),
(5, 8, "Liberation Day"),
(7, 5, "Saints Cyril and Methodius Day"),
(8, 29, "Slovak National Uprising anniversary"),
(9, 1, "Day of the Constitution of the Slovak Republic"),
(9, 15, "Day of Blessed Virgin Mary, patron saint of Slovakia"),
(11, 17, "Struggle for Freedom and Democracy Day"),
)
|