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
|
# Greek national holidays
# ΑΡΓΙΕΣ (για όλους)
# fixed
REM 1 Jan MSG %"ΠΡΩΤΟΧΡΟΝΙΑ%" %! %b.
REM 6 Jan MSG %"ΤΑ ΦΩΤΑ/ ΘΕΟΦΑΝΕΙΑ%" %! %b.
REM 25 Mar MSG %"η 25η Μαρτίου%" %! %b.
REM 15 Aug MSG %"15Αύγουστος%" %! %b.
REM 28 Oct MSG %"ΟΧΙ%" %! %b.
REM 25 Dec MSG %"ΧΡΙΣΤΟΥΓΕΝΝΑ%" %! %b.
REM 26 Dec MSG %"ΧΡΙΣΤΟΥΓΕΝΝΑ2%" %! %b.
REM [orthodoxeaster($Uy)+1] MSG %"ΔΕΥΤΕΡΑ ΤΟΥ ΠΑΣΧΑ%" %! %b.
# May first is a national holiday except if Sunday, day of great week (week before easter) or Monday after easter, then
# minister decides moving that holiday. Here is a likely assumption of how this day might be moved.
# Uncomment following lines to enable.
# set PM date($Uy,5,1)
# IF PM>=orthodoxeaster($Uy)-7 && PM<=orthodoxeaster($Uy)+1
# IF PM<orthodoxeaster($Uy)-3
# REM orthodoxeaster($Uy) -8 MSG %"πιθανόν ΕΡΓΑΤΙΚΗ Πρωτομαγιά%" %! %b.
# ELSE
# REM [plusfunc(2)] MSG %"πιθανόν ΕΡΓΑΤΙΚΗ Πρωτομαγιά%" %! %b.
# ENDIF
# ENDIF
# REM [PM] OMIT Sun AFTER MSG %"Πρωτομαγιά%" %! %b.
REM 1 May MSG %"Πρωτομαγιά%" %! %b.
# end of May 1 speculations
# The following are main national holidays per custom (observed by most but not all)
REM [orthodoxeaster($Uy)] -48 MSG %"Καθαρά Δευτέρα%" %! %b.
REM [orthodoxeaster($Uy)] -2 MSG %"Μεγάλη Παρασκευή%" %! %b.
REM [orthodoxeaster($Uy)] -1 MSG %"Μεγάλο Σάββατο%" %! %b.
REM [orthodoxeaster($Uy)+50] MSG %"Αγίου Πνεύματος%" %! %b.
|