calendarium-romanum 0.4.0 → 0.8.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +5 -5
- data/.gitignore +4 -0
- data/.rspec +2 -0
- data/.rubocop.yml +47 -0
- data/.travis.yml +22 -0
- data/.yardopts +3 -0
- data/CHANGELOG.md +431 -0
- data/Gemfile +25 -0
- data/Gemfile.lock +86 -0
- data/README.md +598 -0
- data/Rakefile +16 -0
- data/bin/calendariumrom +4 -1
- data/calendarium-romanum.gemspec +31 -0
- data/config/locales/cs.yml +5 -0
- data/config/locales/en.yml +21 -14
- data/config/locales/es.yml +94 -0
- data/config/locales/fr.yml +7 -0
- data/config/locales/it.yml +7 -0
- data/config/locales/la.yml +7 -0
- data/data/README.md +70 -24
- data/data/czech-brno-cs.txt +4 -6
- data/data/czech-budejovice-cs.txt +4 -6
- data/data/czech-cechy-cs.txt +4 -5
- data/data/czech-cs.txt +236 -234
- data/data/czech-hradec-cs.txt +3 -5
- data/data/czech-litomerice-cs.txt +5 -7
- data/data/czech-morava-cs.txt +4 -5
- data/data/czech-olomouc-cs.txt +2 -4
- data/data/czech-ostrava-cs.txt +3 -5
- data/data/czech-plzen-cs.txt +3 -5
- data/data/czech-praha-cs.txt +3 -4
- data/data/easter_dates.txt +67 -0
- data/data/universal-1969-la.txt +234 -0
- data/data/universal-en.txt +214 -211
- data/data/universal-es.txt +243 -0
- data/data/universal-fr.txt +214 -210
- data/data/universal-it.txt +214 -211
- data/data/universal-la.txt +214 -210
- data/doc/data_readme.md +2 -0
- data/doc/images/class_diagram.png +0 -0
- data/doc/images/class_diagram.puml +44 -0
- data/doc/yard_readme.rdoc +76 -0
- data/lib/calendarium-romanum.rb +35 -22
- data/lib/calendarium-romanum/abstract_date.rb +15 -0
- data/lib/calendarium-romanum/calendar.rb +207 -42
- data/lib/calendarium-romanum/cli.rb +63 -80
- data/lib/calendarium-romanum/cli/comparator.rb +63 -0
- data/lib/calendarium-romanum/cli/date_parser.rb +30 -0
- data/lib/calendarium-romanum/cli/dumper.rb +68 -0
- data/lib/calendarium-romanum/cli/helper.rb +23 -0
- data/lib/calendarium-romanum/cli/querier.rb +73 -0
- data/lib/calendarium-romanum/cr.rb +16 -0
- data/lib/calendarium-romanum/data.rb +50 -20
- data/lib/calendarium-romanum/day.rb +208 -32
- data/lib/calendarium-romanum/enum.rb +42 -25
- data/lib/calendarium-romanum/enums.rb +124 -44
- data/lib/calendarium-romanum/errors.rb +4 -0
- data/lib/calendarium-romanum/ordinalizer.rb +23 -2
- data/lib/calendarium-romanum/perpetual_calendar.rb +58 -7
- data/lib/calendarium-romanum/rank.rb +43 -12
- data/lib/calendarium-romanum/rank_predicates.rb +43 -0
- data/lib/calendarium-romanum/sanctorale.rb +164 -24
- data/lib/calendarium-romanum/sanctorale_factory.rb +74 -3
- data/lib/calendarium-romanum/sanctorale_loader.rb +180 -0
- data/lib/calendarium-romanum/sanctorale_writer.rb +119 -0
- data/lib/calendarium-romanum/temporale.rb +226 -94
- data/lib/calendarium-romanum/temporale/celebration_factory.rb +107 -0
- data/lib/calendarium-romanum/temporale/dates.rb +84 -16
- data/lib/calendarium-romanum/temporale/easter_table.rb +27 -0
- data/lib/calendarium-romanum/temporale/extensions.rb +15 -0
- data/lib/calendarium-romanum/temporale/extensions/christ_eternal_priest.rb +16 -3
- data/lib/calendarium-romanum/temporale/extensions/dedication_before_all_saints.rb +73 -0
- data/lib/calendarium-romanum/transfers.rb +60 -15
- data/lib/calendarium-romanum/util.rb +22 -3
- data/lib/calendarium-romanum/version.rb +5 -1
- data/liturgical_law/1969_normae_universales.md +568 -0
- data/liturgical_law/1977_decretum_de_celebratione_baptismatis_domini.md +58 -0
- data/liturgical_law/1990_decretum_de_variatione_inducenda.md +67 -0
- data/liturgical_law/1998_notificatio_de_occurrentia.md +57 -0
- data/liturgical_law/2002_normae_universales.md +946 -0
- data/liturgical_law/2006_notification.md +37 -0
- data/liturgical_law/2012_declarationes.md +38 -0
- data/liturgical_law/README.md +74 -0
- metadata +50 -28
- data/lib/calendarium-romanum/sanctoraleloader.rb +0 -115
- data/spec/abstract_date_spec.rb +0 -62
- data/spec/calendar_spec.rb +0 -330
- data/spec/celebration_spec.rb +0 -23
- data/spec/cli_spec.rb +0 -26
- data/spec/colour_spec.rb +0 -17
- data/spec/data_spec.rb +0 -23
- data/spec/date_spec.rb +0 -61
- data/spec/dates_spec.rb +0 -45
- data/spec/day_spec.rb +0 -59
- data/spec/enum_spec.rb +0 -51
- data/spec/i18n_spec.rb +0 -59
- data/spec/ordinalizer_spec.rb +0 -22
- data/spec/perpetual_calendar_spec.rb +0 -91
- data/spec/rank_spec.rb +0 -57
- data/spec/readme_spec.rb +0 -52
- data/spec/sanctorale_factory_spec.rb +0 -42
- data/spec/sanctorale_spec.rb +0 -191
- data/spec/sanctoraleloader_spec.rb +0 -171
- data/spec/season_spec.rb +0 -17
- data/spec/spec_helper.rb +0 -35
- data/spec/temporale_spec.rb +0 -519
data/data/czech-hradec-cs.txt
CHANGED
@@ -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
|
data/data/czech-morava-cs.txt
CHANGED
@@ -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ů
|
data/data/czech-olomouc-cs.txt
CHANGED
@@ -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
|
data/data/czech-ostrava-cs.txt
CHANGED
@@ -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
|
data/data/czech-plzen-cs.txt
CHANGED
@@ -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
|
data/data/czech-praha-cs.txt
CHANGED
@@ -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
|
-
|
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 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
|
data/data/universal-en.txt
CHANGED
@@ -5,236 +5,239 @@ 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
39
|
|
40
40
|
= 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
|
41
|
+
4 casimir : Saint Casimir
|
42
|
+
7 m R perpetua_felicity : Saints Perpetua and Felicity, martyrs
|
43
|
+
8 john_of_god : Saint John of God, religious
|
44
|
+
9 frances_of_rome : Saint Frances of Rome, religious
|
45
|
+
17 patrick : Saint Patrick, bishop
|
46
|
+
18 cyril_of_jerusalem : Saint Cyril of Jerusalem, bishop and doctor
|
47
|
+
19 s joseph : Saint Joseph Husband of the Blessed Virgin Mary
|
48
|
+
23 turibius : Saint Turibius of Mogrovejo, bishop
|
49
|
+
25 s annunciation : Annunciation of the Lord
|
50
50
|
|
51
51
|
= 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
|
52
|
+
2 francis_of_paola : Saint Francis of Paola, hermit
|
53
|
+
4 isidore : Saint Isidore, bishop and doctor of the Church
|
54
|
+
5 vincent_ferrer : Saint Vincent Ferrer, priest
|
55
|
+
7 m de_la_salle : Saint John Baptist de la Salle, priest
|
56
|
+
11 m R stanislaus : Saint Stanislaus, bishop and martyr
|
57
|
+
13 R martin_i : Saint Martin I, pope and martyr
|
58
|
+
21 anselm : Saint Anselm of Canterbury, bishop and doctor of the Church
|
59
|
+
23 R george : Saint George, martyr
|
60
|
+
23 R adalbert : Saint Adalbert, bishop and martyr
|
61
|
+
24 R fidelis : Saint Fidelis of Sigmaringen, priest and martyr
|
62
|
+
25 f R mark : Saint Mark the Evangelist
|
63
|
+
28 R peter_chanel : Saint Peter Chanel, priest and martyr
|
64
|
+
28 de_montfort : Saint Louis Grignon de Montfort, priest
|
65
|
+
29 m catherine_of_siena : Saint Catherine of Siena, virgin and doctor of the Church
|
66
|
+
30 pius_v : Saint Pius V, pope
|
67
67
|
|
68
68
|
= 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
|
-
|
69
|
+
1 joseph_worker : Saint Joseph the Worker
|
70
|
+
2 m athanasius : Saint Athanasius, bishop and doctor
|
71
|
+
3 f R philip_james : Saints Philip and James, Apostles
|
72
|
+
12 R nereus_achilleus : Saints Nereus and Achilleus, martyrs
|
73
|
+
12 R pancras : Saint Pancras, martyr
|
74
|
+
13 bvm_fatima : Our Lady of Fatima
|
75
|
+
14 f R matthias : Saint Matthias the Apostle
|
76
|
+
18 R john_i : Saint John I, pope and martyr
|
77
|
+
20 bernardine : Saint Bernardine of Siena, priest
|
78
|
+
21 R magallanes : Saint Christopher Magallanes and companions, martyrs
|
79
|
+
22 rita : Saint Rita of Cascia
|
80
|
+
25 bede_venerable : Saint Bede the Venerable, priest and doctor
|
81
|
+
25 gregory_vii : Saint Gregory VII, pope
|
82
|
+
25 de_pazzi : Saint Mary Magdalene de Pazzi, virgin
|
83
|
+
26 m neri : Saint Philip Neri, priest
|
84
|
+
27 augustine_of_canterbury : Saint Augustine (Austin) of Canterbury, bishop
|
85
|
+
29 paul_vi : Saint Paul VI, pope
|
86
|
+
31 f visitation : Visitation of the Blessed Virgin Mary
|
86
87
|
|
87
88
|
= 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
|
89
|
+
1 m R justin : Saint Justin Martyr
|
90
|
+
2 R marcellinus_peter : Saints Marcellinus and Peter, martyrs
|
91
|
+
3 m R ugandan_martyrs : Saints Charles Lwanga and companions, martyrs
|
92
|
+
5 m R boniface : Saint Boniface, bishop and martyr
|
93
|
+
6 norbert : Saint Norbert, bishop
|
94
|
+
9 ephrem : Saint Ephrem, deacon and doctor
|
95
|
+
11 m R barnabas : Saint Barnabas the Apostle
|
96
|
+
13 m anthony_of_padua : Saint Anthony of Padua, priest and doctor
|
97
|
+
19 romuald : Saint Romuald, abbot
|
98
|
+
21 m aloysius : Saint Aloysius Gonzaga, religious
|
99
|
+
22 paulinus : Saint Paulinus of Nola, bishop
|
100
|
+
22 R fisher_more : Saints John Fisher, bishop and martyr and Thomas More, martyr
|
101
|
+
24 s baptist_birth : Birth of Saint John the Baptist
|
102
|
+
27 cyril_of_alexandria : Saint Cyril of Alexandria, bishop and doctor
|
103
|
+
28 m R irenaeus : Saint Irenaeus, bishop and martyr
|
104
|
+
29 s R peter_paul : Saints Peter and Paul, Apostles
|
105
|
+
30 R first_martyrs_of_rome : First Martyrs of the Church of Rome
|
105
106
|
|
106
107
|
= 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
|
125
|
-
30 : Saint Peter Chrysologus, bishop and doctor
|
126
|
-
31 m : Saint Ignatius of Loyola, priest
|
108
|
+
3 f R thomas_apostle : Saint Thomas the Apostle
|
109
|
+
4 elizabeth_of_portugal : Saint Elizabeth of Portugal
|
110
|
+
5 anthony_zaccaria : Saint Anthony Zaccaria, priest
|
111
|
+
6 R goretti : Saint Maria Goretti, virgin and martyr
|
112
|
+
9 R chinese_martyrs : Saint Augustine Zhao Rong and companions, martyrs
|
113
|
+
11 m benedict : Saint Benedict, abbot
|
114
|
+
13 henry : Saint Henry
|
115
|
+
14 camillus_de_lellis : Saint Camillus de Lellis, priest
|
116
|
+
15 m bonaventure : Saint Bonaventure, bishop and doctor
|
117
|
+
16 bvm_mount_carmel : Our Lady of Mount Carmel
|
118
|
+
20 R apollinaris : Saint Apollinaris, bishop and martyr
|
119
|
+
21 lawrence_of_brindisi : Saint Lawrence of Brindisi, priest and doctor
|
120
|
+
22 f mary_magdalene : Saint Mary Magdalene
|
121
|
+
23 birgitta : Saint Birgitta, religious
|
122
|
+
24 sharbel : Saint Sharbel Makhluf, hermit
|
123
|
+
25 f R james : Saint James, apostle
|
124
|
+
26 m joachim_anne : Saints Joachim and Anne
|
125
|
+
29 m martha : Saint Martha
|
126
|
+
30 peter_chrysologus : Saint Peter Chrysologus, bishop and doctor
|
127
|
+
31 m ignatius_of_loyola : Saint Ignatius of Loyola, priest
|
127
128
|
|
128
129
|
= 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
|
130
|
+
1 m alphonsus : Saint Alphonsus Maria de Liguori, bishop and doctor of the Church
|
131
|
+
2 eusebius : Saint Eusebius of Vercelli, bishop
|
132
|
+
2 eymard : Saint Peter Julian Eymard, priest
|
133
|
+
4 m vianney : Saint Jean Vianney (the Curé of Ars), priest
|
134
|
+
5 mary_major : Dedication of the Basilica of Saint Mary Major
|
135
|
+
6 f2.5 transfiguration : Transfiguration of the Lord
|
136
|
+
7 R sixtus_ii : Saint Sixtus II, pope, and companions, martyrs
|
137
|
+
7 cajetan : Saint Cajetan, priest
|
138
|
+
8 m dominic : Saint Dominic, priest
|
139
|
+
9 R stein : Saint Teresa Benedicta of the Cross (Edith Stein), virgin and martyr
|
140
|
+
10 f R lawrence : Saint Lawrence, deacon and martyr
|
141
|
+
11 m clare : Saint Clare, virgin
|
142
|
+
12 de_chantal : Saint Jane Frances de Chantal, religious
|
143
|
+
13 R pontian_hippolytus : Saints Pontian, pope, and Hippolytus, priest, martyrs
|
144
|
+
14 m R kolbe : Saint Maximilian Mary Kolbe, priest and martyr
|
145
|
+
15 s assumption : Assumption of the Blessed Virgin Mary
|
146
|
+
16 stephen_hungary : Saint Stephen of Hungary
|
147
|
+
19 eudes : Saint John Eudes, priest
|
148
|
+
20 m bernard : Saint Bernard of Clairvaux, abbot and doctor of the Church
|
149
|
+
21 m pius_x : Saint Pius X, pope
|
150
|
+
22 m bvm_queenship : Queenship of Blessed Virgin Mary
|
151
|
+
23 rose_lima : Saint Rose of Lima, virgin
|
152
|
+
24 f R bartholomew : Saint Bartholomew the Apostle
|
153
|
+
25 louis : Saint Louis
|
154
|
+
25 joseph_calasanz : Saint Joseph of Calasanz, priest
|
155
|
+
27 m monica : Saint Monica
|
156
|
+
28 m augustine : Saint Augustine of Hippo, bishop and doctor of the Church
|
157
|
+
29 m R baptist_beheading : The Beheading of Saint John the Baptist, martyr
|
157
158
|
|
158
159
|
= 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
|
160
|
+
3 m gregory_great : Saint Gregory the Great, pope and doctor
|
161
|
+
8 f bvm_birth : Birth of the Blessed Virgin Mary
|
162
|
+
9 claver : Saint Peter Claver, priest
|
163
|
+
12 bvm_name : Holy Name of the Blessed Virgin Mary
|
164
|
+
13 m john_chrysostom : Saint John Chrysostom, bishop and doctor
|
165
|
+
14 f2.5 R cross : Triumph of the Holy Cross
|
166
|
+
15 m bvm_sorrows : Our Lady of Sorrows
|
167
|
+
16 m R cornelius_cyprian : Saints Cornelius, pope, and Cyprian, bishop, martyrs
|
168
|
+
17 bellarmine : Saint Robert Bellarmine, bishop and doctor
|
169
|
+
19 R januarius : Saint Januarius, bishop and martyr
|
170
|
+
20 m R korean_martyrs : Saint Andrew Kim Taegon, priest, and Paul Chong Hasang and companions, martyrs
|
171
|
+
21 f R matthew : Saint Matthew the Evangelist, Apostle, Evangelist
|
172
|
+
23 m padre_pio : Saint Pio of Pietrelcina (Padre Pio), priest
|
173
|
+
26 R cosmas_damian : Saints Cosmas and Damian, martyrs
|
174
|
+
27 m vincent_de_paul : Saint Vincent de Paul, priest
|
175
|
+
28 R wenceslaus : Saint Wenceslaus, martyr
|
176
|
+
28 R ruiz : Saints Lawrence Ruiz and companions, martyrs
|
177
|
+
29 f archangels : Saints Michael, Gabriel and Raphael, Archangels
|
178
|
+
30 m jerome : Saint Jerome, priest and doctor
|
178
179
|
|
179
180
|
= 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
|
-
|
184
|
-
|
185
|
-
|
186
|
-
9 : Saint
|
187
|
-
|
188
|
-
|
189
|
-
|
190
|
-
|
191
|
-
16 : Saint
|
192
|
-
|
193
|
-
|
194
|
-
|
195
|
-
19 :
|
196
|
-
|
197
|
-
|
198
|
-
|
199
|
-
|
181
|
+
1 m therese_lisieux : Saint Thérèse of the Child Jesus, virgin and doctor
|
182
|
+
2 m guardian_angels : Guardian Angels
|
183
|
+
4 m francis_assisi : Saint Francis of Assisi
|
184
|
+
5 faustina_kowalska : Saint Faustina Kowalska, virgin
|
185
|
+
6 bruno : Saint Bruno, priest
|
186
|
+
7 m bvm_rosary : Our Lady of the Rosary
|
187
|
+
9 R denis : Saint Denis and companions, martyrs
|
188
|
+
9 leonardi : Saint John Leonardi, priest
|
189
|
+
11 john_xxiii : Saint John XXIII, pope
|
190
|
+
14 R callistus_i : Saint Callistus I, pope and martyr
|
191
|
+
15 m teresa_avila : Saint Teresa of Jesus, virgin and doctor
|
192
|
+
16 hedwig : Saint Hedwig, religious
|
193
|
+
16 alacoque : Saint Margaret Mary Alacoque, virgin
|
194
|
+
17 m R ignatius_of_antioch : Saint Ignatius of Antioch, bishop and martyr
|
195
|
+
18 f R luke : Saint Luke the Evangelist
|
196
|
+
19 R brebeuf_jogues : Saints Jean de Brébeuf, Isaac Jogues, priests and martyrs; and their companions, martyrs
|
197
|
+
19 paul_of_cross : Saint Paul of the Cross, priest
|
198
|
+
22 john_paul_ii : Saint John Paul II, pope
|
199
|
+
23 john_capistrano : Saint John of Capistrano, priest
|
200
|
+
24 claret : Saint Anthony Mary Claret, bishop
|
201
|
+
28 f R simon_jude : Saint Simon and Saint Jude, apostles
|
200
202
|
|
201
203
|
= 11
|
202
|
-
1 s : All Saints
|
203
|
-
2 s : All Souls
|
204
|
-
3
|
205
|
-
4 m : Saint Charles Borromeo, bishop
|
206
|
-
9
|
207
|
-
10 m : Saint Leo the Great, pope and doctor
|
208
|
-
11 m
|
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
|
204
|
+
1 s all_saints : All Saints
|
205
|
+
2 s all_souls : All Souls
|
206
|
+
3 de_porres : Saint Martin de Porres, religious
|
207
|
+
4 m borromeo : Saint Charles Borromeo, bishop
|
208
|
+
9 f2.5 lateran_basilica : Dedication of the Lateran basilica
|
209
|
+
10 m leo_great : Saint Leo the Great, pope and doctor
|
210
|
+
11 m martin : Saint Martin of Tours, bishop
|
211
|
+
12 m R josaphat : Saint Josaphat, bishop and martyr
|
212
|
+
15 albert : Saint Albert the Great, bishop and doctor
|
213
|
+
16 margaret_of_scotland : Saint Margaret of Scotland
|
214
|
+
16 gertrude : Saint Gertrude the Great, virgin
|
215
|
+
17 m elizabeth_of_hungary : Saint Elizabeth of Hungary, religious
|
216
|
+
18 peter_paul_basilicas : Dedication of the basilicas of Saints Peter and Paul, Apostles
|
217
|
+
21 m bvm_presentation : Presentation of the Blessed Virgin Mary
|
218
|
+
22 m R cecilia : Saint Cecilia, virgin and martyr
|
219
|
+
23 R clement_i : Saint Clement I, pope and martyr
|
220
|
+
23 columban : Saint Columban, religious
|
221
|
+
24 m R vietnamese_martyrs : Saint Andrew Dung Lac and his companions, martyrs
|
222
|
+
25 R catherine_of_alexandria : Saint Catherine of Alexandria
|
223
|
+
30 f R andrew : Saint Andrew the Apostle
|
222
224
|
|
223
225
|
= 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
|
-
|
231
|
-
|
232
|
-
|
233
|
-
|
234
|
-
|
235
|
-
|
236
|
-
|
237
|
-
|
238
|
-
|
239
|
-
|
240
|
-
|
226
|
+
3 m francis_xavier : Saint Francis Xavier, priest
|
227
|
+
4 john_damascene : Saint John Damascene, priest and doctor
|
228
|
+
6 nicholas : Saint Nicholas, bishop
|
229
|
+
7 m ambrose : Saint Ambrose, bishop and doctor
|
230
|
+
8 s bvm_immaculate : Immaculate Conception of the Blessed Virgin Mary
|
231
|
+
9 juan_diego : Saint Juan Diego
|
232
|
+
10 bvm_loreto : Our Lady of Loreto
|
233
|
+
11 damasus_i : Saint Damasus I, pope
|
234
|
+
12 bvm_guadalupe : Our Lady of Guadalupe
|
235
|
+
13 m R lucy : Saint Lucy of Syracuse, virgin and martyr
|
236
|
+
14 m john_of_cross : Saint John of the Cross, priest and doctor
|
237
|
+
21 canisius : Saint Peter Canisius, priest and doctor
|
238
|
+
23 john_of_kanty : Saint John of Kanty, priest
|
239
|
+
26 f R stephen : Saint Stephen, the first martyr
|
240
|
+
27 f john_evangelist : Saint John the Apostle and evangelist
|
241
|
+
28 f R innocents : Holy Innocents, martyrs
|
242
|
+
29 R becket : Saint Thomas Becket, bishop and martyr
|
243
|
+
31 sylvester_i : Saint Sylvester I, pope
|