calendarium-romanum 0.5.0 → 0.9.0

Sign up to get free protection for your applications and to get access to all the features.
Files changed (113) hide show
  1. checksums.yaml +5 -5
  2. data/.gitignore +5 -0
  3. data/.rspec +2 -0
  4. data/.rubocop.yml +50 -0
  5. data/.travis.yml +23 -0
  6. data/.yardopts +3 -0
  7. data/Appraisals +67 -0
  8. data/CHANGELOG.md +488 -0
  9. data/Gemfile +26 -0
  10. data/Gemfile.lock +95 -0
  11. data/README.md +601 -0
  12. data/Rakefile +27 -0
  13. data/bin/calendariumrom +3 -0
  14. data/calendarium-romanum.gemspec +31 -0
  15. data/config/locales/cs.yml +4 -0
  16. data/config/locales/en.yml +20 -14
  17. data/config/locales/es.yml +94 -0
  18. data/config/locales/fr.yml +6 -0
  19. data/config/locales/it.yml +6 -0
  20. data/config/locales/la.yml +6 -0
  21. data/config/locales/pt.yml +94 -0
  22. data/data/README.md +70 -24
  23. data/data/czech-brno-cs.txt +4 -6
  24. data/data/czech-budejovice-cs.txt +4 -6
  25. data/data/czech-cechy-cs.txt +4 -5
  26. data/data/czech-cs.txt +239 -235
  27. data/data/czech-hradec-cs.txt +3 -5
  28. data/data/czech-litomerice-cs.txt +5 -7
  29. data/data/czech-morava-cs.txt +4 -5
  30. data/data/czech-olomouc-cs.txt +2 -4
  31. data/data/czech-ostrava-cs.txt +3 -5
  32. data/data/czech-plzen-cs.txt +3 -5
  33. data/data/czech-praha-cs.txt +3 -4
  34. data/data/easter_dates.txt +67 -0
  35. data/data/universal-1969-la.txt +234 -0
  36. data/data/universal-en.txt +217 -211
  37. data/data/universal-es.txt +246 -0
  38. data/data/universal-fr.txt +217 -210
  39. data/data/universal-it.txt +217 -211
  40. data/data/universal-la.txt +217 -212
  41. data/data/universal-pt.txt +248 -0
  42. data/doc/data_readme.md +2 -0
  43. data/doc/images/class_diagram.png +0 -0
  44. data/doc/images/class_diagram.puml +44 -0
  45. data/doc/yard_readme.rdoc +76 -0
  46. data/lib/calendarium-romanum.rb +16 -2
  47. data/lib/calendarium-romanum/abstract_date.rb +15 -0
  48. data/lib/calendarium-romanum/calendar.rb +150 -33
  49. data/lib/calendarium-romanum/cli.rb +80 -100
  50. data/lib/calendarium-romanum/cli/comparator.rb +83 -0
  51. data/lib/calendarium-romanum/cli/date_parser.rb +30 -0
  52. data/lib/calendarium-romanum/cli/dumper.rb +68 -0
  53. data/lib/calendarium-romanum/cli/helper.rb +23 -0
  54. data/lib/calendarium-romanum/cli/querier.rb +73 -0
  55. data/lib/calendarium-romanum/cr.rb +16 -0
  56. data/lib/calendarium-romanum/data.rb +40 -8
  57. data/lib/calendarium-romanum/day.rb +187 -32
  58. data/lib/calendarium-romanum/enum.rb +41 -24
  59. data/lib/calendarium-romanum/enums.rb +127 -43
  60. data/lib/calendarium-romanum/errors.rb +1 -1
  61. data/lib/calendarium-romanum/ordinalizer.rb +10 -1
  62. data/lib/calendarium-romanum/perpetual_calendar.rb +58 -7
  63. data/lib/calendarium-romanum/rank.rb +39 -8
  64. data/lib/calendarium-romanum/rank_predicates.rb +43 -0
  65. data/lib/calendarium-romanum/sanctorale.rb +213 -23
  66. data/lib/calendarium-romanum/sanctorale_factory.rb +74 -3
  67. data/lib/calendarium-romanum/sanctorale_loader.rb +180 -0
  68. data/lib/calendarium-romanum/sanctorale_writer.rb +124 -0
  69. data/lib/calendarium-romanum/temporale.rb +222 -42
  70. data/lib/calendarium-romanum/temporale/celebration_factory.rb +68 -9
  71. data/lib/calendarium-romanum/temporale/date_helper.rb +85 -0
  72. data/lib/calendarium-romanum/temporale/dates.rb +52 -59
  73. data/lib/calendarium-romanum/temporale/easter_table.rb +27 -0
  74. data/lib/calendarium-romanum/temporale/extensions.rb +15 -0
  75. data/lib/calendarium-romanum/temporale/extensions/christ_eternal_priest.rb +16 -3
  76. data/lib/calendarium-romanum/temporale/extensions/dedication_before_all_saints.rb +73 -0
  77. data/lib/calendarium-romanum/transfers.rb +84 -24
  78. data/lib/calendarium-romanum/util.rb +21 -23
  79. data/lib/calendarium-romanum/version.rb +3 -2
  80. data/liturgical_law/1969_normae_universales.md +568 -0
  81. data/liturgical_law/1977_decretum_de_celebratione_baptismatis_domini.md +58 -0
  82. data/liturgical_law/1990_decretum_de_variatione_inducenda.md +67 -0
  83. data/liturgical_law/1998_notificatio_de_occurrentia.md +57 -0
  84. data/liturgical_law/2002_normae_universales.md +946 -0
  85. data/liturgical_law/2006_notification.md +37 -0
  86. data/liturgical_law/2012_declarationes.md +38 -0
  87. data/liturgical_law/2020_dubia_de_calendario_2022.md +100 -0
  88. data/liturgical_law/README.md +74 -0
  89. metadata +61 -38
  90. data/lib/calendarium-romanum/sanctoraleloader.rb +0 -122
  91. data/spec/abstract_date_spec.rb +0 -62
  92. data/spec/calendar_spec.rb +0 -559
  93. data/spec/celebration_factory_spec.rb +0 -16
  94. data/spec/celebration_spec.rb +0 -43
  95. data/spec/cli_spec.rb +0 -155
  96. data/spec/colour_spec.rb +0 -17
  97. data/spec/data_spec.rb +0 -23
  98. data/spec/date_parser_spec.rb +0 -68
  99. data/spec/date_spec.rb +0 -61
  100. data/spec/dates_spec.rb +0 -45
  101. data/spec/day_spec.rb +0 -108
  102. data/spec/enum_spec.rb +0 -51
  103. data/spec/i18n_spec.rb +0 -58
  104. data/spec/ordinalizer_spec.rb +0 -36
  105. data/spec/perpetual_calendar_spec.rb +0 -91
  106. data/spec/rank_spec.rb +0 -57
  107. data/spec/readme_spec.rb +0 -56
  108. data/spec/sanctorale_factory_spec.rb +0 -42
  109. data/spec/sanctorale_spec.rb +0 -191
  110. data/spec/sanctoraleloader_spec.rb +0 -176
  111. data/spec/season_spec.rb +0 -17
  112. data/spec/spec_helper.rb +0 -46
  113. data/spec/temporale_spec.rb +0 -572
@@ -4,11 +4,9 @@ description: Calendar for diocese of Hradec Králové, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Hradec Králové
7
- extends:
8
- - czech-cs.txt
9
- - czech-cechy-cs.txt
7
+ extends: czech-cechy-cs.txt
10
8
  ---
11
9
 
12
- 10/30 f2.8 : Výročí posvěcení katedrály Sv. Ducha
10
+ 10/30 f2.8 hradec_kralove_cathedral : Výročí posvěcení katedrály Sv. Ducha
13
11
 
14
- 11/23 s1.4 R : Sv. Klementa I., papeže a mučedníka, hlavního patrona diecéze
12
+ 11/23 s1.4 R clement_i : Sv. Klementa I., papeže a mučedníka, hlavního patrona diecéze
@@ -4,13 +4,11 @@ description: Calendar for diocese of Litoměřice, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Litoměřice
7
- extends:
8
- - czech-cs.txt
9
- - czech-cechy-cs.txt
7
+ extends: czech-cechy-cs.txt
10
8
  ---
11
9
 
12
- 5/30 f2.8 : Sv. Zdislavy, hlavní patronky diecéze
10
+ 5/30 f2.8 zdislava : Sv. Zdislavy, hlavní patronky diecéze
13
11
 
14
- 9/19 R : Sv. Januária, biskupa a mučedníka
15
- 9/19 R : Sv. Ondřeje Kim Tae-gỏna, kněze,Pavla Chõng Ha-sanga a druhů, mučedníků
16
- 9/20 f2.8 : Výročí posvěcení katedrály sv. Štěpána
12
+ 9/19 R januarius : Sv. Januária, biskupa a mučedníka
13
+ 9/19 R korean_martyrs : Sv. Ondřeje Kim Tae-gỏna, kněze, Pavla Chõng Ha-sanga a druhů, mučedníků
14
+ 9/20 f2.8 litomerice_cathedral : Výročí posvěcení katedrály sv. Štěpána
@@ -4,11 +4,10 @@ description: Calendar for province of Moravia
4
4
  locale: cs
5
5
  country: cz
6
6
  province: Moravia
7
- extends:
8
- - czech-cs.txt
7
+ extends: czech-cs.txt
9
8
  ---
10
9
 
11
- 5/6 m3.11 R : Sv. Jana Sarkandra, kněze a mučedníka
12
- 5/20 m3.11 : Sv. Klementa Marie Hofbauera, kněze
10
+ 5/6 m3.11 R sarkander : Sv. Jana Sarkandra, kněze a mučedníka
11
+ 5/20 m3.11 hofbauer : Sv. Klementa Marie Hofbauera, kněze
13
12
 
14
- 7/27 m3.11 : Sv. Gorazda a druhů
13
+ 7/27 m3.11 gorazd : Sv. Gorazda a druhů
@@ -4,9 +4,7 @@ description: Calendar for archdiocese of Olomouc, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Olomouc
7
- extends:
8
- - czech-cs.txt
9
- - czech-morava-cs.txt
7
+ extends: czech-morava-cs.txt
10
8
  ---
11
9
 
12
- 6/30 f2.8 : Výročí posvěcení katedrály sv. Václava
10
+ 6/30 f2.8 olomouc_cathedral : Výročí posvěcení katedrály sv. Václava
@@ -4,11 +4,9 @@ description: Calendar for diocese of Ostrava and Opava, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Ostrava, Opava
7
- extends:
8
- - czech-cs.txt
9
- - czech-morava-cs.txt
7
+ extends: czech-morava-cs.txt
10
8
  ---
11
9
 
12
- 7/16 f2.8 : Výročí posvěcení katedrály Božského Spasitele
10
+ 7/16 f2.8 ostrava_cathedral : Výročí posvěcení katedrály Božského Spasitele
13
11
 
14
- 10/16 f2.8 : Sv. Hedviky, řeholnice, hlavní patronky Slezska
12
+ 10/16 f2.8 hedwig : Sv. Hedviky, řeholnice, hlavní patronky Slezska
@@ -4,11 +4,9 @@ description: Calendar for diocese of Plzeň, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Plzeň
7
- extends:
8
- - czech-cs.txt
9
- - czech-cechy-cs.txt
7
+ extends: czech-cechy-cs.txt
10
8
  ---
11
9
 
12
- 7/14 f2.8 R : Bl. Hroznaty, mučedníka, hlavního patrona diecéze
10
+ 7/14 f2.8 R hroznata : Bl. Hroznaty, mučedníka, hlavního patrona diecéze
13
11
 
14
- 12/2 f2.8 : Výročí posvěcení katedrály sv. Bartoloměje
12
+ 12/2 f2.8 plzen_cathedral : Výročí posvěcení katedrály sv. Bartoloměje
@@ -4,9 +4,8 @@ description: Calendar for archdiocese of Prague, Czech Republic
4
4
  locale: cs
5
5
  country: cz
6
6
  diocese: Praha
7
- extends:
8
- - czech-cs.txt
9
- - czech-cechy-cs.txt
7
+ extends: czech-cechy-cs.txt
10
8
  ---
11
9
 
12
- 5/12 f2.8 : Výročí posvěcení katedrály sv. Víta, Václava a Vojtěcha
10
+ 2/15 R bachstein : Bl. Bedřicha Bachsteina a druhů, mučedníků
11
+ 5/12 f2.8 prague_cathedral : Výročí posvěcení katedrály sv. Víta, Václava a Vojtěcha
@@ -0,0 +1,67 @@
1
+ # Notitiae 210/1984, p. 77-78
2
+ 1985-04-07
3
+ 1986-03-30
4
+ 1987-04-19
5
+ 1988-04-03
6
+ 1989-03-26
7
+ 1990-04-15
8
+ 1991-03-31
9
+ 1992-04-19
10
+ 1993-04-11
11
+ 1994-04-03
12
+ 1995-04-16
13
+ 1996-04-07
14
+ 1997-03-30
15
+ 1998-04-12
16
+ 1999-04-04
17
+ 2000-04-23
18
+ 2001-04-15
19
+ 2002-03-31
20
+ 2003-04-20
21
+ 2004-04-11
22
+ 2005-03-27
23
+ 2006-04-16
24
+ 2007-04-08
25
+ 2008-03-23
26
+ 2009-04-12
27
+ 2010-04-04
28
+ 2011-04-24
29
+ 2012-04-08
30
+ 2013-03-31
31
+ 2014-04-20
32
+ 2015-04-05
33
+ 2016-03-27
34
+ 2017-04-16
35
+ 2018-04-01
36
+ 2019-04-21
37
+ 2020-04-12
38
+ 2021-04-04
39
+ 2022-04-17
40
+ 2023-04-09
41
+ 2024-03-31
42
+ 2025-04-20
43
+ 2026-04-05
44
+ 2027-03-28
45
+ 2028-04-16
46
+ 2029-04-01
47
+ 2030-04-21
48
+ 2031-04-13
49
+ 2032-03-28
50
+ 2033-04-17
51
+ 2034-04-09
52
+ 2035-03-25
53
+ 2036-04-13
54
+ 2037-04-05
55
+ 2038-04-25
56
+ 2039-04-10
57
+ 2040-04-01
58
+ 2041-04-21
59
+ 2042-04-06
60
+ 2043-03-29
61
+ 2044-04-17
62
+ 2045-04-09
63
+ 2046-03-25
64
+ 2047-04-14
65
+ 2048-04-05
66
+ 2049-04-18
67
+ 2050-04-10
@@ -0,0 +1,234 @@
1
+ ---
2
+ title: Calendarium Romanum Generale (1969)
3
+ locale: la
4
+ # source: https://archive.org/stream/CalendariumRomanum1969/Calendarium%20Romanum%20%281969%29_djvu.txt
5
+ note: |
6
+ This is the first published form of the reformed General Roman
7
+ Calendar. Much outdated now, offered mainly as a historical document.
8
+ ---
9
+
10
+ = 1
11
+
12
+ # 1 s : In octava Nativitatis. SOLLEMNITAS SANCTAE DEI GENETRICIS MARIAE # handled by Temporale
13
+ 2 m basil_gregory : Ss. Basilii Magni et Gregorii Nazianzeni, episcoporum et Ecclesiae doctorum
14
+ # 6 s : IN EPIPHANIA DOMINI # handled by Temporale
15
+ 7 raymond : S. Raymundi de Penyafort, presbyteri
16
+ 13 hilary : S. Hilarii, episcopi et Ecclesiae doctoris
17
+ 17 m anthony_of_egypt : S. Antonii, abbatis
18
+ 20 R fabian : S. Fabiani, papae et martyris
19
+ 20 R sebastian : S. Sebastiani, martyris
20
+ 21 m R agnes : S. Agnetis, virginis et martyris
21
+ 22 R vincent_deacon : S. Vincentii, diaconi et martyris
22
+ 24 m francis_de_sales : S. Francisci de Sales, episcopi et Ecclesiae doctoris
23
+ 25 f paul_conversion : In Conversione S. Pauli, apostoli
24
+ 26 m timothy_titus : Ss. Timothei et Titi, episcoporum
25
+ 27 merici : S. Angelae Merici, virginis
26
+ 28 m aquinas : S. Thomae de Aquino, presbyteri et Ecclesiae doctoris
27
+ 31 m bosco : S. Ioannis Bosco, presbyteri
28
+
29
+ = 2
30
+
31
+ 2 f2.5 presentation_of_lord : In Praesentatione Domini
32
+ 3 R blase : S. Blasii, episcopi et martyris
33
+ 3 ansgar : S. Ansgarii, episcopi
34
+ 5 m R agatha : S. Agathae, virginis et martyris
35
+ 6 m R paul_miki : Ss. Pauli Miki, prosbyteri, et sociorum, martyrum
36
+ 8 jerome_emiliani : S. Hieronymi Emiliani, presbyteri
37
+ 10 m scholastica : S. Scholasticae, virginis
38
+ 11 bvm_lourdes : B. Mariae Virginis de Lapurdo
39
+ 14 m cyril_methodius : Ss. Cyrilli, monachi, et Methodii, episcopi
40
+ 17 servite_founders : Ss. Septem Fundatorum Ordinis Servorum B. M. V.
41
+ 21 peter_damian : S. Petri Damiani, episcopi et Ecclesiae doctoris
42
+ 22 f chair_of_peter : Cathedrae S. Petri, apostoli
43
+ 23 m R polycarp : S. Polycarpi, episcopi et martyris
44
+
45
+ = 3
46
+
47
+ 4 casimir : S. Casimiri
48
+ 7 m R perpetua_felicity : Ss. Perpetuae et Felicitatis, martyrum
49
+ 8 john_of_god : S. Ioannis a Deo, religiosi
50
+ 9 frances_of_rome : S. Franciscae Romanae, religiosae
51
+ 17 patrick : S. Patricii, episcopi
52
+ 18 cyril_of_jerusalem : S. Cyrilli Hierosolymitani, episcopi et Ecclesiae doctoris
53
+ 19 s joseph : S. IOSEPH, SPONSI B. M. V.
54
+ 23 turibius : S. Turibii de Mongrovejo, episcopi
55
+ 25 s annunciation : IN ANNUNTIATIONE DOMINI
56
+
57
+ = 4
58
+
59
+ 2 francis_of_paola : S. Francisci de Paula, eremitae
60
+ 4 isidore : S. Isidori, episcopi et Ecclesiae doctoris
61
+ 5 vincent_ferrer : S. Vincentii Ferrer, presbyteri
62
+ 7 m de_la_salle : S. Ioannis Baptistae de la Salle, presbyteri
63
+ 11 R stanislaus : S. Stanislai, episcopi et martyris
64
+ 13 R martin_i : S. Martini I, papae et martyris
65
+ 21 anselm : S. Anselmi, episcopi et Ecclesiae doctoris
66
+ 23 R george : S. Georgii, martyris
67
+ 24 R fidelis : S. Fidelis de Sigmaringa, presbyteri et martyris
68
+ 25 f R mark : S. Marci, evangelistae
69
+ 28 R peter_chanel : S. Petri Chanel, presbyteri et martyris
70
+ 29 m catherine_of_siena : S. Catharinae Senensis, virginis
71
+ 30 pius_v : S. Pii V, papae
72
+
73
+ = 5
74
+
75
+ 1 joseph_worker : S. loseph Opificis
76
+ 2 m athanasius : S. Athanasii, episcopi et Ecclesiae doctoris
77
+ 3 f R philip_james : Ss. Philippi et Iacobi, apostolorum
78
+ 12 R nereus_achilleus : Ss. Nerei et Achillei, martyrum
79
+ 12 R pancras : S. Pancratii, martyris
80
+ 14 f R matthias : S. Matthiae, apostoli
81
+ 18 R john_i : S. Ioannis I, papae et martyris
82
+ 20 bernardine : S. Bernardini Senensis, presbyteri
83
+ 25 bede_venerable : S. Bedae Venerabilis, presbyteri et Ecclesiae doctoris
84
+ 25 gregory_vii : S. Gregorii VII, papae
85
+ 25 de_pazzi : S. Mariae Magdalenae de’ Pazzi, virginis
86
+ 26 m neri : S. Philippi Neri, presbyteri
87
+ 27 augustine_of_canterbury : S. Augustini Cantuariensis, episcopi
88
+ 31 f visitation : In Visitatione B. Mariae Virginis
89
+
90
+ = 6
91
+
92
+ 1 m R justin : S. Iustini, martyris
93
+ 2 R marcellinus_peter : Ss. Marcellini et Petri, martyrum
94
+ 3 m R ugandan_martyrs : Ss. Caroli Lwanga et sociorum, martyrum
95
+ 5 m R boniface : S. Bonifatii, episcopi et martyris
96
+ 6 norbert : S. Norberti, episcopi
97
+ 9 ephrem : S. Ephraem, diaconi et Ecclesiae doctoris
98
+ 11 m R barnabas : S. Barnabae, apostoli
99
+ 13 m anthony_of_padua : S. Antonii de Padua, presbyteri et Ecclesiae doctoris
100
+ 19 romuald : S. Romualdi, abbatis
101
+ 21 m aloysius : S. Aloisii Gonzaga, religiosi
102
+ 22 paulinus : S. Paulini Nolani, episcopi
103
+ 22 R fisher_more : Ss. Ioannis Fisher, episcopi, et Thomae More, martyrum
104
+ 24 s baptist_birth : IN NATIVITATE S. IOANNIS BAPTISTAE
105
+ 27 cyril_of_alexandria : S. Cyrilli Alexandrini, episcopi et Ecclesiae doctoris
106
+ 28 m R irenaeus : S. Irenaei, episcopi et martyris
107
+ 29 s R peter_paul : SS. PETRI ET PAULI, APOSTOLORUM
108
+ 30 R first_martyrs_of_rome : Ss. Protomartyrum S. Romanae Ecclesiae
109
+
110
+ = 7
111
+
112
+ 3 f R thomas_apostle : S. Thomae, apostoli
113
+ 4 elizabeth_of_portugal : S. Elisabeth Lusitaniae
114
+ 5 anthony_zaccaria : S. Antonii Mariae Zaccaria, presbyteri
115
+ 6 R goretti : S. Mariae Goretti, virginis et martyris
116
+ 11 m benedict : S. Benedicti, abbatis
117
+ 13 henry : S. Henrici
118
+ 14 camillus_de_lellis : S. Camilli de Lellis, presbyteri
119
+ 15 m bonaventure : S. Bonaventurae, episcopi et Ecclesiae doctoris
120
+ 16 bvm_mount_carmel : B. Mariae Virginis de Monte Carmelo
121
+ 21 lawrence_of_brindisi : S. Laurentii de Brundusio, presbyteri et Ecclesiae doctoris
122
+ 22 m mary_magdalene : S. Mariae Magdalenae
123
+ 23 birgitta : S. Birgittae, religiosae
124
+ 25 f R james : S. Iacobi, apostoli
125
+ 26 m joachim_anne : Ss. Ioachim et Annae, parentum B. M. V.
126
+ 29 m martha : S. Marthae
127
+ 30 peter_chrysologus : S. Petri Chrysologi, episcopi et Ecclesiae doctoris
128
+ 31 m ignatius_of_loyola : S. Ignatii de Loyola, presbyteri
129
+
130
+ = 8
131
+
132
+ 1 m alphonsus : S. Alfonsi Mariae de' Liguori, episcopi et Ecclesiae doctoris
133
+ 2 eusebius : S. Eusebii Vercellensis, episcopi
134
+ 4 m vianney : S. Ioannis Mariae Vianney, presbyteri
135
+ 5 mary_major : In Dedicatione basilicae S. Mariae
136
+ 5 R sixtus_ii : Ss. Xysti II, papae, et sociorum, martyrum
137
+ 6 f2.5 transfiguration : In Transfiguratione Domini
138
+ 7 m dominic : S. Dominici, presbyteri
139
+ 8 cajetan : S. Caietani, presbyteri
140
+ 10 f R lawrence : S. Laurentii, diaconi et martyris
141
+ 11 m clare : S. Clarae, virginis
142
+ 13 R pontian_hippolytus : Ss. Pontiani, papae, et Hippolyti, presbyteri, martyrum
143
+ 15 s assumption : IN ASSUMPTIONE BEATAE MARIAE VIRGINIS
144
+ 16 stephen_hungary : S. Stephani Hungariae
145
+ 19 eudes : S. Ioannis Eudes, presbyteri
146
+ 20 m bernard : S. Bernardi, abbatis et Ecclesiae doctoris
147
+ 21 m pius_x : S. Pii X, papae
148
+ 22 m bvm_queenship : B. Mariae Virginis Reginae
149
+ 23 rose_lima : S. Rosae de Lima, virginis
150
+ 24 f R bartholomew : S. Bartholomaei, apostoli
151
+ 25 louis : S. Ludovici
152
+ 25 joseph_calasanz : S. Ioseph Calasanz, presbyteri
153
+ 27 m monica : S. Monicae
154
+ 28 m augustine : S. Augustini, episcopi et Ecclesiae doctoris
155
+ 29 m R baptist_beheading : In Passione S. Ioannis Baptistae, martyris
156
+
157
+ = 9
158
+
159
+ 3 m gregory_great : S. Gregorii Magni, papae et Ecclesiae doctoris
160
+ 8 f bvm_birth : In Nativitate B. Mariae Virginis
161
+ 13 m john_chrysostom : S. Ioannis Chrysostomi, episcopi et Ecclesiae doctoris
162
+ 14 f R cross : In Exaltatione sanctae Crucis
163
+ 15 m bvm_sorrows : B. Mariae Virginis Perdolentis
164
+ 16 m R cornelius_cyprian : Ss. Cornelii, papae, et Cypriani, episcopi, martyrum
165
+ 17 bellarmine : S. Roberti Bellarmino, episcopi et Ecclesiae doctoris
166
+ 19 R januarius : S. Ianuarii, episcopi et martyris
167
+ 21 f R matthew : S. Matthaei, apostoli et evangelistae
168
+ 26 R cosmas_damian : Ss. Cosmae et Damiani, martyrum
169
+ 27 m vincent_de_paul : S. Vincentii de Paul, presbyteri
170
+ 28 R wenceslaus : S. Wenceslai, martyris
171
+ 29 f archangels : Ss. Michaelis, Gabrielis et Raphaelis, archangelorum
172
+ 30 m jerome : S. Hieronymi, presbyteri et Ecclesiae doctoris
173
+
174
+ = 10
175
+
176
+ 1 m therese_lisieux : S. Teresiae a Iesu Infante, virginis
177
+ 2 m guardian_angels : Ss. Angelorum Custodum
178
+ 4 m francis_assisi : S. Francisci Assisiensis
179
+ 6 bruno : S. Brunonis, presbyteri
180
+ 7 m bvm_rosary : B. Mariae Virginis a Rosario
181
+ 9 R denis : Ss. Dionysii, episcopi, et sociorum, martyrum
182
+ 9 leonardi : S. Ioannis Leonardi, presbyteri
183
+ 14 R callistus_i : S. Callisti I, papae et martyris
184
+ 15 m teresa_avila : S. Teresiae de Avila, virginis
185
+ 16 hedwig : S. Hedwigis, religiosae
186
+ 16 alacoque : S. Margaritae Mariae Alacoque, virginis
187
+ 17 m R ignatius_of_antioch : S. Ignatii Antiocheni, episcopi et martyris
188
+ 18 f R luke : S. Lucae, evangelistae
189
+ 19 R brebeuf_jogues : Ss. Isaac Jogues, presbyteri, et sociorum, martyrum
190
+ 19 paul_of_cross : S. Pauli a Cruce, presbyteri
191
+ 23 john_capistrano : S. Ioannis de Capistrano, presbyteri
192
+ 24 claret : S. Antonii Mariae Claret, episcopi
193
+ 28 f R simon_jude : Ss. Simonis et Iudae, apostolorum
194
+
195
+ = 11
196
+
197
+ 1 s all_saints : OMNIUM SANCTORUM
198
+ 2 s V all_souls : IN COMMEMORATIONE OMNIUM FIDELIUM DEFUNCTORUM
199
+ 3 de_porres : S. Martini de Porres, religiosi
200
+ 4 m borromeo : S. Caroli Borromeo, episcopi
201
+ 9 f2.5 lateran_basilica : In dedicatione basilicae Lateranensis
202
+ 10 m leo_great : S. Leonis Magni, papae et Ecclesiae doctoris
203
+ 11 m martin : S. Martini Turonensis, episcopi
204
+ 12 m R josaphat : S. Iosaphat, episcopi et martyris
205
+ 15 albert : S. Alberti Magni, episcopi et Ecclesiae doctoris
206
+ 16 margaret_of_scotland : S. Margaritae Scotiae
207
+ 16 gertrude : S. Gertrudis, virginis
208
+ 17 m elizabeth_of_hungary : S. Elisabeth Hungariae, religiosae
209
+ 18 peter_paul_basilicas : In Dedicatione basilicarum Ss. Petri et Pauli, apostolorum
210
+ 21 m bvm_presentation : In Praesentatione B. Mariae Virginis
211
+ 22 m R cecilia : S. Caeciliae, virginis et martyris
212
+ 23 R clement_i : S. Clementis I, papae et martyris
213
+ 23 columban : S. Columbani, abbatis
214
+ 30 f R andrew : S. Andreae, apostoli
215
+
216
+ = 12
217
+
218
+ 3 m francis_xavier : S. Francisci Xavier, presbyteri
219
+ 4 john_damascene : S. Ioannis Damasceni, presbyteri et Ecclesiae doctoris
220
+ 6 nicholas : S. Nicolai, episcopi
221
+ 7 m ambrose : S. Ambrosii, episcopi et Ecclesiae doctoris
222
+ 8 s bvm_immaculate : IN CONCEPTIONE IMMACULATA BEATAE MARIAE VIRGINIS
223
+ 11 damasus_i : S. Damasi I, papae
224
+ 12 de_chantal : S. Ioannae Franciscae de Chantal, religiosae
225
+ 13 m R lucy : S. Luciae, virginis et martyris
226
+ 14 m john_of_cross : S. Ioannis a Cruce, presbyteri et Ecclesiae doctoris
227
+ 21 canisius : S. Petri Canisii, presbyteri et Ecclesiae doctoris
228
+ 23 john_of_kanty : S. Ioannis de Kety, presbyteri
229
+ # 25 : IN NATIVITATE DOMINI # handled by Temporale
230
+ 26 f R stephen : S. Stephani, protomartyris
231
+ 27 f john_evangelist : S. Ioannis, apostoli et evangelistae
232
+ 28 f R innocents : Ss. Innocentium, martyrum
233
+ 29 R becket : S. Thomae Becket, episcopi et martyris
234
+ 31 sylvester_i : S. Silvestri I, papae
@@ -5,236 +5,242 @@ locale: en
5
5
  ---
6
6
 
7
7
  = 1
8
- 2 m : Saints Basil the Great and Gregory Nazianzen, bishops and doctors
9
- 3 : The Most Holy Name of Jesus
10
- 7 : Saint Raymond of Penyafort, priest
11
- 13 : Saint Hilary of Poitiers, bishop and doctor
12
- 17 m : Saint Anthony of Egypt, abbot
13
- 20 R : Saint Fabian, pope and martyr
14
- 20 R : Saint Sebastian, martyr
15
- 21 m R : Saint Agnes, virgin and martyr
16
- 22 R : Saint Vincent, deacon and martyr
17
- 24 m : Saint Francis de Sales, bishop and doctor
18
- 25 f : The Conversion of Saint Paul, apostle
19
- 26 m : Saints Timothy and Titus, bishops
20
- 27 : Saint Angela Merici, virgin
21
- 28 m : Saint Thomas Aquinas, priest and doctor
22
- 31 m : Saint John Bosco, priest
8
+ 2 m basil_gregory : Saints Basil the Great and Gregory Nazianzen, bishops and doctors
9
+ 3 name_jesus : The Most Holy Name of Jesus
10
+ 7 raymond : Saint Raymond of Penyafort, priest
11
+ 13 hilary : Saint Hilary of Poitiers, bishop and doctor
12
+ 17 m anthony_of_egypt : Saint Anthony of Egypt, abbot
13
+ 20 R fabian : Saint Fabian, pope and martyr
14
+ 20 R sebastian : Saint Sebastian, martyr
15
+ 21 m R agnes : Saint Agnes, virgin and martyr
16
+ 22 R vincent_deacon : Saint Vincent, deacon and martyr
17
+ 24 m francis_de_sales : Saint Francis de Sales, bishop and doctor
18
+ 25 f paul_conversion : The Conversion of Saint Paul, apostle
19
+ 26 m timothy_titus : Saints Timothy and Titus, bishops
20
+ 27 merici : Saint Angela Merici, virgin
21
+ 28 m aquinas : Saint Thomas Aquinas, priest and doctor
22
+ 31 m bosco : Saint John Bosco, priest
23
23
 
24
24
  = 2
25
- 2 f2.5 : Presentation of the Lord
26
- 3 R : Saint Blase, bishop and martyr
27
- 3 : Saint Ansgar, bishop
28
- 5 m R : Saint Agatha, virgin and martyr
29
- 6 m R : Saints Paul Miki and companions, martyrs
30
- 8 : Saint Jerome Emiliani, priest
31
- 8 : Saint Josephine Bakhita, virgin
32
- 10 m : Saint Scholastica, virgin
33
- 11 : Our Lady of Lourdes
34
- 14 m : Saints Cyril, monk, and Methodius, bishop
35
- 17 : Seven Holy Founders of the Servite Order
36
- 21 : Saint Peter Damian, bishop and doctor of the Church
37
- 22 f : Chair of Saint Peter, apostle
38
- 23 m R : Saint Polycarp, bishop and martyr
25
+ 2 f2.5 presentation_of_lord : Presentation of the Lord
26
+ 3 R blase : Saint Blase, bishop and martyr
27
+ 3 ansgar : Saint Ansgar, bishop
28
+ 5 m R agatha : Saint Agatha, virgin and martyr
29
+ 6 m R paul_miki : Saints Paul Miki and companions, martyrs
30
+ 8 jerome_emiliani : Saint Jerome Emiliani, priest
31
+ 8 josephine_bakhita : Saint Josephine Bakhita, virgin
32
+ 10 m scholastica : Saint Scholastica, virgin
33
+ 11 bvm_lourdes : Our Lady of Lourdes
34
+ 14 m cyril_methodius : Saints Cyril, monk, and Methodius, bishop
35
+ 17 servite_founders : Seven Holy Founders of the Servite Order
36
+ 21 peter_damian : Saint Peter Damian, bishop and doctor of the Church
37
+ 22 f chair_of_peter : Chair of Saint Peter, apostle
38
+ 23 m R polycarp : Saint Polycarp, bishop and martyr
39
+ 27 gregory_of_narek : Saint Gregory of Narek, abbot and doctor of the Church
39
40
 
40
41
  = 3
41
- 4 : Saint Casimir
42
- 7 m R : Saints Perpetua and Felicity, martyrs
43
- 8 : Saint John of God, religious
44
- 9 : Saint Frances of Rome, religious
45
- 17 : Saint Patrick, bishop
46
- 18 : Saint Cyril of Jerusalem, bishop and doctor
47
- 19 s : Saint Joseph Husband of the Blessed Virgin Mary
48
- 23 : Saint Turibius of Mogrovejo, bishop
49
- 25 s : Annunciation of the Lord
42
+ 4 casimir : Saint Casimir
43
+ 7 m R perpetua_felicity : Saints Perpetua and Felicity, martyrs
44
+ 8 john_of_god : Saint John of God, religious
45
+ 9 frances_of_rome : Saint Frances of Rome, religious
46
+ 17 patrick : Saint Patrick, bishop
47
+ 18 cyril_of_jerusalem : Saint Cyril of Jerusalem, bishop and doctor
48
+ 19 s joseph : Saint Joseph Husband of the Blessed Virgin Mary
49
+ 23 turibius : Saint Turibius of Mogrovejo, bishop
50
+ 25 s annunciation : Annunciation of the Lord
50
51
 
51
52
  = 4
52
- 2 : Saint Francis of Paola, hermit
53
- 4 : Saint Isidore, bishop and doctor of the Church
54
- 5 : Saint Vincent Ferrer, priest
55
- 7 m : Saint John Baptist de la Salle, priest
56
- 11 m R : Saint Stanislaus, bishop and martyr
57
- 13 R : Saint Martin I, pope and martyr
58
- 21 : Saint Anselm of Canterbury, bishop and doctor of the Church
59
- 23 R : Saint George, martyr
60
- 23 R : Saint Adalbert, bishop and martyr
61
- 24 R : Saint Fidelis of Sigmaringen, priest and martyr
62
- 25 f R : Saint Mark the Evangelist
63
- 28 R : Saint Peter Chanel, priest and martyr
64
- 28 : Saint Louis Grignon de Montfort, priest
65
- 29 m : Saint Catherine of Siena, virgin and doctor of the Church
66
- 30 : Saint Pius V, pope
53
+ 2 francis_of_paola : Saint Francis of Paola, hermit
54
+ 4 isidore : Saint Isidore, bishop and doctor of the Church
55
+ 5 vincent_ferrer : Saint Vincent Ferrer, priest
56
+ 7 m de_la_salle : Saint John Baptist de la Salle, priest
57
+ 11 m R stanislaus : Saint Stanislaus, bishop and martyr
58
+ 13 R martin_i : Saint Martin I, pope and martyr
59
+ 21 anselm : Saint Anselm of Canterbury, bishop and doctor of the Church
60
+ 23 R george : Saint George, martyr
61
+ 23 R adalbert : Saint Adalbert, bishop and martyr
62
+ 24 R fidelis : Saint Fidelis of Sigmaringen, priest and martyr
63
+ 25 f R mark : Saint Mark the Evangelist
64
+ 28 R peter_chanel : Saint Peter Chanel, priest and martyr
65
+ 28 de_montfort : Saint Louis Grignon de Montfort, priest
66
+ 29 m catherine_of_siena : Saint Catherine of Siena, virgin and doctor of the Church
67
+ 30 pius_v : Saint Pius V, pope
67
68
 
68
69
  = 5
69
- 1 : Saint Joseph the Worker
70
- 2 m : Saint Athanasius, bishop and doctor
71
- 3 f R : Saints Philip and James, Apostles
72
- 12 R : Saints Nereus and Achilleus, martyrs
73
- 12 R : Saint Pancras, martyr
74
- 13 : Our Lady of Fatima
75
- 14 f R : Saint Matthias the Apostle
76
- 18 R : Saint John I, pope and martyr
77
- 20 : Saint Bernardine of Siena, priest
78
- 21 R : Saint Christopher Magallanes and companions, martyrs
79
- 22 : Saint Rita of Cascia
80
- 25 : Saint Bede the Venerable, priest and doctor
81
- 25 : Saint Gregory VII, pope
82
- 25 : Saint Mary Magdalene de Pazzi, virgin
83
- 26 m : Saint Philip Neri, priest
84
- 27 : Saint Augustine (Austin) of Canterbury, bishop
85
- 31 f : Visitation of the Blessed Virgin Mary
70
+ 1 joseph_worker : Saint Joseph the Worker
71
+ 2 m athanasius : Saint Athanasius, bishop and doctor
72
+ 3 f R philip_james : Saints Philip and James, Apostles
73
+ 10 john_de_avila : Saint John De Avila, Priest and Doctor of the Church
74
+ 12 R nereus_achilleus : Saints Nereus and Achilleus, martyrs
75
+ 12 R pancras : Saint Pancras, martyr
76
+ 13 bvm_fatima : Our Lady of Fatima
77
+ 14 f R matthias : Saint Matthias the Apostle
78
+ 18 R john_i : Saint John I, pope and martyr
79
+ 20 bernardine : Saint Bernardine of Siena, priest
80
+ 21 R magallanes : Saint Christopher Magallanes and companions, martyrs
81
+ 22 rita : Saint Rita of Cascia
82
+ 25 bede_venerable : Saint Bede the Venerable, priest and doctor
83
+ 25 gregory_vii : Saint Gregory VII, pope
84
+ 25 de_pazzi : Saint Mary Magdalene de Pazzi, virgin
85
+ 26 m neri : Saint Philip Neri, priest
86
+ 27 augustine_of_canterbury : Saint Augustine (Austin) of Canterbury, bishop
87
+ 29 paul_vi : Saint Paul VI, pope
88
+ 31 f visitation : Visitation of the Blessed Virgin Mary
86
89
 
87
90
  = 6
88
- 1 m R : Saint Justin Martyr
89
- 2 R : Saints Marcellinus and Peter, martyrs
90
- 3 m R : Saints Charles Lwanga and companions, martyrs
91
- 5 m R : Saint Boniface, bishop and martyr
92
- 6 : Saint Norbert, bishop
93
- 9 : Saint Ephrem, deacon and doctor
94
- 11 m R : Saint Barnabas the Apostle
95
- 13 m : Saint Anthony of Padua, priest and doctor
96
- 19 : Saint Romuald, abbot
97
- 21 m : Saint Aloysius Gonzaga, religious
98
- 22 : Saint Paulinus of Nola, bishop
99
- 22 R : Saints John Fisher, bishop and martyr and Thomas More, martyr
100
- 24 s : Birth of Saint John the Baptist
101
- 27 : Saint Cyril of Alexandria, bishop and doctor
102
- 28 m R : Saint Irenaeus, bishop and martyr
103
- 29 s R : Saints Peter and Paul, Apostles
104
- 30 R : First Martyrs of the Church of Rome
91
+ 1 m R justin : Saint Justin Martyr
92
+ 2 R marcellinus_peter : Saints Marcellinus and Peter, martyrs
93
+ 3 m R ugandan_martyrs : Saints Charles Lwanga and companions, martyrs
94
+ 5 m R boniface : Saint Boniface, bishop and martyr
95
+ 6 norbert : Saint Norbert, bishop
96
+ 9 ephrem : Saint Ephrem, deacon and doctor
97
+ 11 m R barnabas : Saint Barnabas the Apostle
98
+ 13 m anthony_of_padua : Saint Anthony of Padua, priest and doctor
99
+ 19 romuald : Saint Romuald, abbot
100
+ 21 m aloysius : Saint Aloysius Gonzaga, religious
101
+ 22 paulinus : Saint Paulinus of Nola, bishop
102
+ 22 R fisher_more : Saints John Fisher, bishop and martyr and Thomas More, martyr
103
+ 24 s baptist_birth : Birth of Saint John the Baptist
104
+ 27 cyril_of_alexandria : Saint Cyril of Alexandria, bishop and doctor
105
+ 28 m R irenaeus : Saint Irenaeus, bishop and martyr
106
+ 29 s R peter_paul : Saints Peter and Paul, Apostles
107
+ 30 R first_martyrs_of_rome : First Martyrs of the Church of Rome
105
108
 
106
109
  = 7
107
- 3 f R : Saint Thomas the Apostle
108
- 4 : Saint Elizabeth of Portugal
109
- 5 : Saint Anthony Zaccaria, priest
110
- 6 R : Saint Maria Goretti, virgin and martyr
111
- 9 R : Saint Augustine Zhao Rong and companions, martyrs
112
- 11 m : Saint Benedict, abbot
113
- 13 : Saint Henry
114
- 14 : Saint Camillus de Lellis, priest
115
- 15 m : Saint Bonaventure, bishop and doctor
116
- 16 : Our Lady of Mount Carmel
117
- 20 R : Saint Apollinaris, bishop and martyr
118
- 21 : Saint Lawrence of Brindisi, priest and doctor
119
- 22 f : Saint Mary Magdalene
120
- 23 : Saint Birgitta, religious
121
- 24 : Saint Sharbel Makhluf, hermit
122
- 25 f R : Saint James, apostle
123
- 26 m : Saints Joachim and Anne
124
- 29 m R : Saint Martha
125
- 30 : Saint Peter Chrysologus, bishop and doctor
126
- 31 m : Saint Ignatius of Loyola, priest
110
+ 3 f R thomas_apostle : Saint Thomas the Apostle
111
+ 4 elizabeth_of_portugal : Saint Elizabeth of Portugal
112
+ 5 anthony_zaccaria : Saint Anthony Zaccaria, priest
113
+ 6 R goretti : Saint Maria Goretti, virgin and martyr
114
+ 9 R chinese_martyrs : Saint Augustine Zhao Rong and companions, martyrs
115
+ 11 m benedict : Saint Benedict, abbot
116
+ 13 henry : Saint Henry
117
+ 14 camillus_de_lellis : Saint Camillus de Lellis, priest
118
+ 15 m bonaventure : Saint Bonaventure, bishop and doctor
119
+ 16 bvm_mount_carmel : Our Lady of Mount Carmel
120
+ 20 R apollinaris : Saint Apollinaris, bishop and martyr
121
+ 21 lawrence_of_brindisi : Saint Lawrence of Brindisi, priest and doctor
122
+ 22 f mary_magdalene : Saint Mary Magdalene
123
+ 23 birgitta : Saint Birgitta, religious
124
+ 24 sharbel : Saint Sharbel Makhluf, hermit
125
+ 25 f R james : Saint James, apostle
126
+ 26 m joachim_anne : Saints Joachim and Anne
127
+ 29 m martha_mary_lazarus : Saints Martha, Mary and Lazarus
128
+ 30 peter_chrysologus : Saint Peter Chrysologus, bishop and doctor
129
+ 31 m ignatius_of_loyola : Saint Ignatius of Loyola, priest
127
130
 
128
131
  = 8
129
- 1 m : Saint Alphonsus Maria de Liguori, bishop and doctor of the Church
130
- 2 : Saint Eusebius of Vercelli, bishop
131
- 2 : Saint Peter Julian Eymard, priest
132
- 4 m : Saint Jean Vianney (the Curé of Ars), priest
133
- 5 : Dedication of the Basilica of Saint Mary Major
134
- 6 f2.5 : Transfiguration of the Lord
135
- 7 R : Saint Sixtus II, pope, and companions, martyrs
136
- 7 : Saint Cajetan, priest
137
- 8 m : Saint Dominic, priest
138
- 9 R : Saint Teresa Benedicta of the Cross (Edith Stein), virgin and martyr
139
- 10 f R : Saint Lawrence, deacon and martyr
140
- 11 m : Saint Clare, virgin
141
- 12 : Saint Jane Frances de Chantal, religious
142
- 13 R : Saints Pontian, pope, and Hippolytus, priest, martyrs
143
- 14 m R : Saint Maximilian Mary Kolbe, priest and martyr
144
- 15 s : Assumption of the Blessed Virgin Mary
145
- 16 : Saint Stephen of Hungary
146
- 19 : Saint John Eudes, priest
147
- 20 m : Saint Bernard of Clairvaux, abbot and doctor of the Church
148
- 21 m : Saint Pius X, pope
149
- 22 m : Queenship of Blessed Virgin Mary
150
- 23 : Saint Rose of Lima, virgin
151
- 24 f R : Saint Bartholomew the Apostle
152
- 25 : Saint Louis
153
- 25 : Saint Joseph of Calasanz, priest
154
- 27 m : Saint Monica
155
- 28 m : Saint Augustine of Hippo, bishop and doctor of the Church
156
- 29 m R : The Beheading of Saint John the Baptist, martyr
132
+ 1 m alphonsus : Saint Alphonsus Maria de Liguori, bishop and doctor of the Church
133
+ 2 eusebius : Saint Eusebius of Vercelli, bishop
134
+ 2 eymard : Saint Peter Julian Eymard, priest
135
+ 4 m vianney : Saint Jean Vianney (the Curé of Ars), priest
136
+ 5 mary_major : Dedication of the Basilica of Saint Mary Major
137
+ 6 f2.5 transfiguration : Transfiguration of the Lord
138
+ 7 R sixtus_ii : Saint Sixtus II, pope, and companions, martyrs
139
+ 7 cajetan : Saint Cajetan, priest
140
+ 8 m dominic : Saint Dominic, priest
141
+ 9 R stein : Saint Teresa Benedicta of the Cross (Edith Stein), virgin and martyr
142
+ 10 f R lawrence : Saint Lawrence, deacon and martyr
143
+ 11 m clare : Saint Clare, virgin
144
+ 12 de_chantal : Saint Jane Frances de Chantal, religious
145
+ 13 R pontian_hippolytus : Saints Pontian, pope, and Hippolytus, priest, martyrs
146
+ 14 m R kolbe : Saint Maximilian Mary Kolbe, priest and martyr
147
+ 15 s assumption : Assumption of the Blessed Virgin Mary
148
+ 16 stephen_hungary : Saint Stephen of Hungary
149
+ 19 eudes : Saint John Eudes, priest
150
+ 20 m bernard : Saint Bernard of Clairvaux, abbot and doctor of the Church
151
+ 21 m pius_x : Saint Pius X, pope
152
+ 22 m bvm_queenship : Queenship of Blessed Virgin Mary
153
+ 23 rose_lima : Saint Rose of Lima, virgin
154
+ 24 f R bartholomew : Saint Bartholomew the Apostle
155
+ 25 louis : Saint Louis
156
+ 25 joseph_calasanz : Saint Joseph of Calasanz, priest
157
+ 27 m monica : Saint Monica
158
+ 28 m augustine : Saint Augustine of Hippo, bishop and doctor of the Church
159
+ 29 m R baptist_beheading : The Beheading of Saint John the Baptist, martyr
157
160
 
158
161
  = 9
159
- 3 m : Saint Gregory the Great, pope and doctor
160
- 8 f : Birth of the Blessed Virgin Mary
161
- 9 : Saint Peter Claver, priest
162
- 12 : Holy Name of the Blessed Virgin Mary
163
- 13 m : Saint John Chrysostom, bishop and doctor
164
- 14 f2.5 R : Triumph of the Holy Cross
165
- 15 m : Our Lady of Sorrows
166
- 16 m R : Saints Cornelius, pope, and Cyprian, bishop, martyrs
167
- 17 : Saint Robert Bellarmine, bishop and doctor
168
- 19 R : Saint Januarius, bishop and martyr
169
- 20 m R : Saint Andrew Kim Taegon, priest, and Paul Chong Hasang and companions, martyrs
170
- 21 f R : Saint Matthew the Evangelist, Apostle, Evangelist
171
- 23 m : Saint Pio of Pietrelcina (Padre Pio), priest
172
- 26 R : Saints Cosmas and Damian, martyrs
173
- 27 m : Saint Vincent de Paul, priest
174
- 28 R : Saint Wenceslaus, martyr
175
- 28 R : Saints Lawrence Ruiz and companions, martyrs
176
- 29 f : Saints Michael, Gabriel and Raphael, Archangels
177
- 30 m : Saint Jerome, priest and doctor
162
+ 3 m gregory_great : Saint Gregory the Great, pope and doctor
163
+ 8 f bvm_birth : Birth of the Blessed Virgin Mary
164
+ 9 claver : Saint Peter Claver, priest
165
+ 12 bvm_name : Holy Name of the Blessed Virgin Mary
166
+ 13 m john_chrysostom : Saint John Chrysostom, bishop and doctor
167
+ 14 f2.5 R cross : Triumph of the Holy Cross
168
+ 15 m bvm_sorrows : Our Lady of Sorrows
169
+ 16 m R cornelius_cyprian : Saints Cornelius, pope, and Cyprian, bishop, martyrs
170
+ 17 bellarmine : Saint Robert Bellarmine, bishop and doctor
171
+ 17 hildegard : Saint Hildegard of Bingen, Virgin and Doctor of the Church
172
+ 19 R januarius : Saint Januarius, bishop and martyr
173
+ 20 m R korean_martyrs : Saint Andrew Kim Taegon, priest, and Paul Chong Hasang and companions, martyrs
174
+ 21 f R matthew : Saint Matthew the Evangelist, Apostle, Evangelist
175
+ 23 m padre_pio : Saint Pio of Pietrelcina (Padre Pio), priest
176
+ 26 R cosmas_damian : Saints Cosmas and Damian, martyrs
177
+ 27 m vincent_de_paul : Saint Vincent de Paul, priest
178
+ 28 R wenceslaus : Saint Wenceslaus, martyr
179
+ 28 R ruiz : Saints Lawrence Ruiz and companions, martyrs
180
+ 29 f archangels : Saints Michael, Gabriel and Raphael, Archangels
181
+ 30 m jerome : Saint Jerome, priest and doctor
178
182
 
179
183
  = 10
180
- 1 m : Saint Thérèse of the Child Jesus, virgin and doctor
181
- 2 m : Guardian Angels
182
- 4 m : Saint Francis of Assisi
183
- 6 : Saint Bruno, priest
184
- 7 m : Our Lady of the Rosary
185
- 9 R : Saint Denis and companions, martyrs
186
- 9 : Saint John Leonardi, priest
187
- 11 : Saint John XXIII, pope
188
- 14 R : Saint Callistus I, pope and martyr
189
- 15 m : Saint Teresa of Jesus, virgin and doctor
190
- 16 : Saint Hedwig, religious
191
- 16 : Saint Margaret Mary Alacoque, virgin
192
- 17 m R : Saint Ignatius of Antioch, bishop and martyr
193
- 18 f R : Saint Luke the Evangelist
194
- 19 R : Saints Jean de Brébeuf, Isaac Jogues, priests and martyrs; and their companions, martyrs
195
- 19 : Saint Paul of the Cross, priest
196
- 22 : Saint John Paul II, pope
197
- 23 : Saint John of Capistrano, priest
198
- 24 : Saint Anthony Mary Claret, bishop
199
- 28 f R : Saint Simon and Saint Jude, apostles
184
+ 1 m therese_lisieux : Saint Thérèse of the Child Jesus, virgin and doctor
185
+ 2 m guardian_angels : Guardian Angels
186
+ 4 m francis_assisi : Saint Francis of Assisi
187
+ 5 faustina_kowalska : Saint Faustina Kowalska, virgin
188
+ 6 bruno : Saint Bruno, priest
189
+ 7 m bvm_rosary : Our Lady of the Rosary
190
+ 9 R denis : Saint Denis and companions, martyrs
191
+ 9 leonardi : Saint John Leonardi, priest
192
+ 11 john_xxiii : Saint John XXIII, pope
193
+ 14 R callistus_i : Saint Callistus I, pope and martyr
194
+ 15 m teresa_avila : Saint Teresa of Jesus, virgin and doctor
195
+ 16 hedwig : Saint Hedwig, religious
196
+ 16 alacoque : Saint Margaret Mary Alacoque, virgin
197
+ 17 m R ignatius_of_antioch : Saint Ignatius of Antioch, bishop and martyr
198
+ 18 f R luke : Saint Luke the Evangelist
199
+ 19 R brebeuf_jogues : Saints Jean de Brébeuf, Isaac Jogues, priests and martyrs; and their companions, martyrs
200
+ 19 paul_of_cross : Saint Paul of the Cross, priest
201
+ 22 john_paul_ii : Saint John Paul II, pope
202
+ 23 john_capistrano : Saint John of Capistrano, priest
203
+ 24 claret : Saint Anthony Mary Claret, bishop
204
+ 28 f R simon_jude : Saint Simon and Saint Jude, apostles
200
205
 
201
206
  = 11
202
- 1 s : All Saints
203
- 2 s : All Souls
204
- 3 R : Saint Martin de Porres, religious
205
- 4 m : Saint Charles Borromeo, bishop
206
- 9 f : Dedication of the Lateran basilica
207
- 10 m : Saint Leo the Great, pope and doctor
208
- 11 m R : Saint Martin of Tours, bishop
209
- 12 m R : Saint Josaphat, bishop and martyr
210
- 15 : Saint Albert the Great, bishop and doctor
211
- 16 : Saint Margaret of Scotland
212
- 16 : Saint Gertrude the Great, virgin
213
- 17 m : Saint Elizabeth of Hungary, religious
214
- 18 : Dedication of the basilicas of Saints Peter and Paul, Apostles
215
- 21 m : Presentation of the Blessed Virgin Mary
216
- 22 m R : Saint Cecilia, virgin and martyr
217
- 23 R : Saint Clement I, pope and martyr
218
- 23 : Saint Columban, religious
219
- 24 m R : Saint Andrew Dung Lac and his companions, martyrs
220
- 25 R : Saint Catherine of Alexandria
221
- 30 f R : Saint Andrew the Apostle
207
+ 1 s all_saints : All Saints
208
+ 2 s V all_souls : All Souls
209
+ 3 de_porres : Saint Martin de Porres, religious
210
+ 4 m borromeo : Saint Charles Borromeo, bishop
211
+ 9 f2.5 lateran_basilica : Dedication of the Lateran basilica
212
+ 10 m leo_great : Saint Leo the Great, pope and doctor
213
+ 11 m martin : Saint Martin of Tours, bishop
214
+ 12 m R josaphat : Saint Josaphat, bishop and martyr
215
+ 15 albert : Saint Albert the Great, bishop and doctor
216
+ 16 margaret_of_scotland : Saint Margaret of Scotland
217
+ 16 gertrude : Saint Gertrude the Great, virgin
218
+ 17 m elizabeth_of_hungary : Saint Elizabeth of Hungary, religious
219
+ 18 peter_paul_basilicas : Dedication of the basilicas of Saints Peter and Paul, Apostles
220
+ 21 m bvm_presentation : Presentation of the Blessed Virgin Mary
221
+ 22 m R cecilia : Saint Cecilia, virgin and martyr
222
+ 23 R clement_i : Saint Clement I, pope and martyr
223
+ 23 columban : Saint Columban, religious
224
+ 24 m R vietnamese_martyrs : Saint Andrew Dung Lac and his companions, martyrs
225
+ 25 R catherine_of_alexandria : Saint Catherine of Alexandria
226
+ 30 f R andrew : Saint Andrew the Apostle
222
227
 
223
228
  = 12
224
- 3 m : Saint Francis Xavier, priest
225
- 4 : Saint John Damascene, priest and doctor
226
- 6 : Saint Nicholas, bishop
227
- 7 m : Saint Ambrose, bishop and doctor
228
- 8 s : Immaculate Conception of the Blessed Virgin Mary
229
- 9 : Saint Juan Diego
230
- 11 : Saint Damasus I, pope
231
- 12 : Our Lady of Guadalupe
232
- 13 m R : Saint Lucy of Syracuse, virgin and martyr
233
- 14 m : Saint John of the Cross, priest and doctor
234
- 21 : Saint Peter Canisius, priest and doctor
235
- 23 : Saint John of Kanty, priest
236
- 26 f R : Saint Stephen, the first martyr
237
- 27 f : Saint John the Apostle and evangelist
238
- 28 f R : Holy Innocents, martyrs
239
- 29 R : Saint Thomas Becket, bishop and martyr
240
- 31 : Saint Sylvester I, pope
229
+ 3 m francis_xavier : Saint Francis Xavier, priest
230
+ 4 john_damascene : Saint John Damascene, priest and doctor
231
+ 6 nicholas : Saint Nicholas, bishop
232
+ 7 m ambrose : Saint Ambrose, bishop and doctor
233
+ 8 s bvm_immaculate : Immaculate Conception of the Blessed Virgin Mary
234
+ 9 juan_diego : Saint Juan Diego
235
+ 10 bvm_loreto : Our Lady of Loreto
236
+ 11 damasus_i : Saint Damasus I, pope
237
+ 12 bvm_guadalupe : Our Lady of Guadalupe
238
+ 13 m R lucy : Saint Lucy of Syracuse, virgin and martyr
239
+ 14 m john_of_cross : Saint John of the Cross, priest and doctor
240
+ 21 canisius : Saint Peter Canisius, priest and doctor
241
+ 23 john_of_kanty : Saint John of Kanty, priest
242
+ 26 f R stephen : Saint Stephen, the first martyr
243
+ 27 f john_evangelist : Saint John the Apostle and evangelist
244
+ 28 f R innocents : Holy Innocents, martyrs
245
+ 29 R becket : Saint Thomas Becket, bishop and martyr
246
+ 31 sylvester_i : Saint Sylvester I, pope